Skip to content

Commit

Permalink
don't return 0 exit code on failed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
spoonincode committed Sep 30, 2023
1 parent 5b18ef4 commit 425081d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unittests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1749,7 +1749,7 @@ void TestExtraVectors()
catch (std::exception &e)
{
printf("test %d failed: %s \n", i, e.what());
continue;
throw;
}
}
}
Expand Down

0 comments on commit 425081d

Please sign in to comment.