File: disable-long-double-eigenvalue-checks.patch

package info (click to toggle)
dune-common 2.10.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,812 kB
  • sloc: cpp: 52,256; python: 3,979; sh: 1,658; makefile: 17
file content (28 lines) | stat: -rw-r--r-- 973 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--- a/dune/common/test/eigenvaluestest.cc
+++ b/dune/common/test/eigenvaluestest.cc
@@ -339,20 +339,20 @@ int main()
   testSymmetricFieldMatrix<double,200>();
   testSymmetricFieldMatrix<float,4>();
   testSymmetricFieldMatrix<float,200>();
-  testSymmetricFieldMatrix<long double,4>();
-  testSymmetricFieldMatrix<long double,200>();
+//   testSymmetricFieldMatrix<long double,4>();
+//   testSymmetricFieldMatrix<long double,200>();
 #endif // HAVE_LAPACK
 
   testSymmetricFieldMatrix<double,2>();
   testSymmetricFieldMatrix<double,3>();
   testSymmetricFieldMatrix<float,2>();
   testSymmetricFieldMatrix<float,3>();
-  testSymmetricFieldMatrix<long double,2>();
-  testSymmetricFieldMatrix<long double,3>();
+//   testSymmetricFieldMatrix<long double,2>();
+//   testSymmetricFieldMatrix<long double,3>();
 
   checkMultiplicity<double>();
   checkMultiplicity<float>();
-  checkMultiplicity<long double>();
+//   checkMultiplicity<long double>();
 
   return 0;
 }