We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2e4bad commit ccd7f71Copy full SHA for ccd7f71
src/test/TestMain.cpp
@@ -111,7 +111,11 @@ int test_main(int argc, char const** argv)
111
112
if (testArgs.unitOption.getValue())
113
{
114
- test_suite::unit_test_main(argc, argv);
+ int unitResult = test_suite::unit_test_main(argc, argv);
115
+ if (unitResult != EXIT_SUCCESS)
116
+ {
117
+ return unitResult;
118
+ }
119
}
120
121
if (report::results.errorCount > 0 ||
0 commit comments