maybe fixing CI logic?

This commit is contained in:
rusefi 2019-02-01 22:40:24 -05:00
parent 5ced490687
commit 7ff2ff31a0
1 changed files with 2 additions and 1 deletions

View File

@ -56,7 +56,8 @@ GTEST_API_ int main(int argc, char **argv) {
testing::InitGoogleTest(&argc, argv);
// uncomment if you only want to run selected tests
//::testing::GTEST_FLAG(filter) = "*testFasterEngineSpinningUp*";
return RUN_ALL_TESTS();
int result = RUN_ALL_TESTS();
return result == 0 ? 0 : -1;
}
void print(const char *format, ...) {