Skip to content
Snippets Groups Projects
Commit af7a257f authored by Müller, Felix's avatar Müller, Felix
Browse files

Merge branch 'issue/problemstattest_petsc' into 'master'

Disable tests for PETSc with nonmatching type

See merge request !115
parents ca27d54f 4b7ad06d
No related branches found
No related tags found
1 merge request!115Disable tests for PETSc with nonmatching type
......@@ -54,11 +54,19 @@ int main(int argc, char** argv)
{
Environment env(argc, argv);
#if !HAVE_PETSC || PETSC_USE_REAL_SINGLE
test<float>();
#endif
#if !HAVE_PETSC || PETSC_USE_REAL_DOUBLE
test<double>();
#endif
#if !HAVE_PETSC
test<long double>();
#endif
#if HAVE_QUADMATH
#if HAVE_QUADMATH && (!HAVE_PETSC || PETSC_USE_REAL___FLOAT128)
test<Dune::Float128>();
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment