Searched refs:RUN_ALL_TESTS (Results 1 - 25 of 25) sorted by relevance
/gem5/ext/googletest/googletest/test/ |
H A D | gtest_uninitialized_test_.cc | 37 // RUN_ALL_TESTS() is called without testing::InitGoogleTest() being 42 return RUN_ALL_TESTS();
|
H A D | gtest_no_test_unittest.cc | 49 // assertion is executed before RUN_ALL_TESTS() is called, even 54 // The above EXPECT_EQ() should cause RUN_ALL_TESTS() to return non-zero. 55 return RUN_ALL_TESTS() ? 0 : 1;
|
H A D | gtest_break_on_failure_unittest_.cc | 87 return RUN_ALL_TESTS();
|
H A D | gtest-death-test_ex_test.cc | 92 return RUN_ALL_TESTS();
|
H A D | gtest_repeat_test.cc | 167 GTEST_CHECK_INT_EQ_(1, RUN_ALL_TESTS()); 176 GTEST_CHECK_INT_EQ_(repeat > 0 ? 1 : 0, RUN_ALL_TESTS()); 187 GTEST_CHECK_INT_EQ_(0, RUN_ALL_TESTS()); 198 GTEST_CHECK_INT_EQ_(0, RUN_ALL_TESTS()); 216 GTEST_CHECK_INT_EQ_(1, RUN_ALL_TESTS());
|
H A D | gtest_premature_exit_test.cc | 112 const int exit_code = RUN_ALL_TESTS(); 115 // RUN_ALL_TESTS().
|
H A D | gtest_filter_unittest_.cc | 139 return RUN_ALL_TESTS();
|
H A D | gtest_list_tests_unittest_.cc | 156 return RUN_ALL_TESTS();
|
H A D | gtest_shuffle_test_.cc | 102 return RUN_ALL_TESTS();
|
H A D | gtest_stress_test.cc | 240 const int result = RUN_ALL_TESTS(); // Expected to fail. 241 GTEST_CHECK_(result == 1) << "RUN_ALL_TESTS() did not fail as expected"; 254 return RUN_ALL_TESTS();
|
H A D | gtest_environment_test.cc | 132 return RUN_ALL_TESTS(); 146 // Verifies that RUN_ALL_TESTS() runs the tests when the global 149 "RUN_ALL_TESTS() should return non-zero, as the global tear-down " 157 // Verifies that RUN_ALL_TESTS() runs the tests when the global 160 "RUN_ALL_TESTS() should return non-zero, as both the global set-up " 168 // Verifies that RUN_ALL_TESTS() runs no test when the global set-up 171 "RUN_ALL_TESTS() should return non-zero, as the global set-up " 179 // Verifies that RUN_ALL_TESTS() doesn't do global set-up or 183 "RUN_ALL_TESTS() should return zero, as there is no test to run.");
|
H A D | gtest_catch_exceptions_test_.cc | 310 return RUN_ALL_TESTS();
|
H A D | gtest_xml_output_unittest_.cc | 180 return RUN_ALL_TESTS();
|
H A D | gtest_output_test_.cc | 346 return RUN_ALL_TESTS(); 1048 return RUN_ALL_TESTS(); 1053 return RUN_ALL_TESTS();
|
H A D | gtest-listener_test.cc | 217 int ret_val = RUN_ALL_TESTS(); 306 // RUN_ALL_TESTS finishes.
|
H A D | gtest-unittest-api_test.cc | 340 return RUN_ALL_TESTS();
|
H A D | gtest-param-test_test.cc | 698 // the call site of INSTANTIATE_TEST_CASE_P nor in RUN_ALL_TESTS(). For 1054 return RUN_ALL_TESTS();
|
/gem5/ext/googletest/googletest/src/ |
H A D | gtest_main.cc | 37 return RUN_ALL_TESTS();
|
/gem5/ext/googletest/googlemock/src/ |
H A D | gmock_main.cc | 53 return RUN_ALL_TESTS();
|
/gem5/ext/googletest/googletest/samples/ |
H A D | sample10_unittest.cc | 143 return RUN_ALL_TESTS();
|
H A D | sample9_unittest.cc | 137 int ret_val = RUN_ALL_TESTS();
|
/gem5/ext/googletest/googlemock/test/ |
H A D | gmock_output_test_.cc | 290 return RUN_ALL_TESTS();
|
H A D | gmock_stress_test.cc | 317 const int exit_code = RUN_ALL_TESTS(); // Expected to fail. 318 GTEST_CHECK_(exit_code != 0) << "RUN_ALL_TESTS() did not fail as expected";
|
H A D | gmock-spec-builders_test.cc | 2643 return RUN_ALL_TESTS();
|
/gem5/ext/googletest/googletest/include/gtest/ |
H A D | gtest.h | 419 // global context (before or after invocation of RUN_ALL_TESTS and from 642 // singleton such that the RUN_ALL_TESTS() macro knows which tests to 1335 // You should call this before RUN_ALL_TESTS() is called, probably in 1355 // RUN_ALL_TESTS(). In particular, it parses a command line for the 2225 // RUN_ALL_TESTS() should be invoked after the command line has been 2230 int RUN_ALL_TESTS() GTEST_MUST_USE_RESULT_; 2232 inline int RUN_ALL_TESTS() { function
|
Completed in 45 milliseconds