11int main(
int argc,
char* argv[]) {
13 absl::InitializeSymbolizer(argv[0]);
16 absl::FailureSignalHandlerOptions options;
17 options.symbolize_stacktrace =
true;
18 options.use_alternate_stack =
false;
19 options.alarm_on_failure_secs =
false;
20 options.call_previous_handler =
true;
21 options.writerfn =
nullptr;
22 absl::InstallFailureSignalHandler(options);
25 ::testing::InitGoogleTest(&argc, argv);
28 ::testing::FLAGS_gtest_color =
"yes";
29 ::testing::FLAGS_gtest_print_time =
true;
33 std::string filter = ::testing::GTEST_FLAG(filter);
36 ::testing::GTEST_FLAG(filter) =
"-*RomTest*:-*E2E*:-*ZSCustomOverworld*";
39 std::cout <<
"Running YAZE tests in CI mode..." << std::endl;
40 std::cout <<
"Test filter: " << ::testing::GTEST_FLAG(filter) << std::endl;
43 int result = RUN_ALL_TESTS();