mirror of https://github.com/rusefi/rusefi-1.git
25 lines
639 B
C++
25 lines
639 B
C++
/**
|
|
* @file main.cpp
|
|
* @file Unit tests (and some integration tests to be fair) of rusEFI
|
|
*
|
|
* @author Andrey Belomutskiy, (c) 2012-2021
|
|
*/
|
|
|
|
|
|
#include "pch.h"
|
|
#include <stdlib.h>
|
|
|
|
GTEST_API_ int main(int argc, char **argv) {
|
|
testing::InitGoogleTest(&argc, argv);
|
|
// uncomment if you only want to run selected tests
|
|
/**
|
|
* See TEST_FROM_TRIGGER_ID to limit test just for last trigger
|
|
*/
|
|
// setVerboseTrigger(true);
|
|
//::testing::GTEST_FLAG(filter) = "*AllTriggersFixture*";
|
|
int result = RUN_ALL_TESTS();
|
|
// windows ERRORLEVEL in Jenkins batch file seems to want negative value to detect failure
|
|
return result == 0 ? 0 : -1;
|
|
}
|
|
|