Searched refs:should_run (Results 1 - 3 of 3) sorted by relevance

/gem5/ext/googletest/googletest/test/
H A Dgtest-unittest-api_test.cc153 EXPECT_TRUE(test_case->should_run());
164 EXPECT_FALSE(tests[0]->should_run());
170 EXPECT_TRUE(tests[1]->should_run());
176 EXPECT_TRUE(tests[2]->should_run());
182 EXPECT_TRUE(tests[3]->should_run());
193 EXPECT_TRUE(test_case->should_run());
204 EXPECT_TRUE(tests[0]->should_run());
216 EXPECT_FALSE(test_case->should_run());
226 EXPECT_FALSE(test_info->should_run());
251 EXPECT_TRUE(test_cases[0]->should_run());
[all...]
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h694 bool should_run() const { return should_run_; } function in class:testing::TestInfo
811 bool should_run() const { return should_run_; } function in class:testing::TestCase
867 // Sets the should_run member.
895 return test_info->should_run() && test_info->result()->Passed();
900 return test_info->should_run() && test_info->result()->Failed();
921 return test_info->should_run();
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc346 return test_case->should_run() && test_case->Passed();
351 return test_case->should_run() && test_case->Failed();
357 return test_case->should_run();
3177 if (!test_case.should_run() || (test_case.failed_test_count() == 0)) {
3182 if (!test_info.should_run() || test_info.result()->Passed()) {
3643 test_info.should_run() ? "run" : "notrun");
4836 test_case->set_should_run(test_case->should_run() || is_selected);

Completed in 33 milliseconds