Skip to content

Commit

Permalink
test/levelset: re-enable tests disabled by mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-iob committed Feb 19, 2024
1 parent 1bf7545 commit 9194808
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
24 changes: 12 additions & 12 deletions test/integration_tests/levelset/test_levelset_00009.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -578,25 +578,25 @@ int main(int argc, char *argv[])

int status;
try {
// status = subtest_001();
// if (status != 0) {
// return status;
// }
status = subtest_001();
if (status != 0) {
return status;
}

status = subtest_002();
if (status != 0) {
return status;
}

// status = subtest_003();
// if (status != 0) {
// return status;
// }
status = subtest_003();
if (status != 0) {
return status;
}

// status = subtest_004();
// if (status != 0) {
// return status;
// }
status = subtest_004();
if (status != 0) {
return status;
}
} catch (const std::exception &exception) {
log::cout() << exception.what();
exit(1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -444,10 +444,10 @@ int main(int argc, char *argv[])
return status;
}

// status = subtest_002(rank);
// if (status != 0) {
// return status;
// }
status = subtest_002(rank);
if (status != 0) {
return status;
}
} catch (const std::exception &exception) {
bitpit::log::cout() << exception.what();
exit(1);
Expand Down

0 comments on commit 9194808

Please sign in to comment.