Skip to content
Snippets Groups Projects
Commit abeee1ee authored by Elias Pipping's avatar Elias Pipping
Browse files

Tests: Cover multiple components

parent 06efd83f
No related branches found
No related tags found
No related merge requests found
...@@ -126,11 +126,11 @@ int main(int argc, char** argv) ...@@ -126,11 +126,11 @@ int main(int argc, char** argv)
bool passed(true); bool passed(true);
MultigridTestSuite<1> testsuite1; MultigridTestSuite<1> testsuite1;
// MultigridTestSuite<2> testsuite2; MultigridTestSuite<2> testsuite2;
// MultigridTestSuite<8> testsuite8; MultigridTestSuite<8> testsuite8;
passed = checkWithStandardGrids(testsuite1); passed = checkWithStandardGrids(testsuite1);
// passed = checkWithStandardGrids(testsuite2); passed = checkWithStandardGrids(testsuite2);
// passed = checkWithStandardGrids(testsuite8); passed = checkWithStandardGrids(testsuite8);
return passed ? 0 : 1; return passed ? 0 : 1;
} }
...@@ -69,9 +69,9 @@ int main(int argc, char** argv) ...@@ -69,9 +69,9 @@ int main(int argc, char** argv)
bool passed = true; bool passed = true;
UMFPackSolverTestSuite<1> testsuite1; UMFPackSolverTestSuite<1> testsuite1;
// UMFPackSolverTestSuite<2> testsuite2; UMFPackSolverTestSuite<2> testsuite2;
passed = checkWithStandardGrids(testsuite1); passed = checkWithStandardGrids(testsuite1);
// passed = checkWithStandardGrids(testsuite2); passed = checkWithStandardGrids(testsuite2);
return passed ? 0 : 1; return passed ? 0 : 1;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment