Home
last modified time | relevance | path

Searched refs:should_run (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest.h751 bool should_run() const { return should_run_; } in should_run() function
862 bool should_run() const { return should_run_; } in should_run() function
961 return test_info->should_run() && test_info->result()->Passed(); in TestPassed()
966 return test_info->should_run() && test_info->result()->Skipped(); in TestSkipped()
971 return test_info->should_run() && test_info->result()->Failed(); in TestFailed()
992 return test_info->should_run(); in ShouldRunTest()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
H A Dgtest.cc369 return test_suite->should_run() && test_suite->Passed(); in TestSuitePassed()
374 return test_suite->should_run() && test_suite->Failed(); in TestSuiteFailed()
380 return test_suite->should_run(); in ShouldRunTestSuite()
3297 if (!test_suite.should_run() || (test_suite.failed_test_count() == 0)) { in PrintFailedTests()
3302 if (!test_info.should_run() || !test_info.result()->Failed()) { in PrintFailedTests()
3322 if (!test_suite.should_run() || (test_suite.skipped_test_count() == 0)) { in PrintSkippedTests()
3327 if (!test_info.should_run() || !test_info.result()->Skipped()) { in PrintSkippedTests()
3812 test_info.should_run() ? "run" : "notrun"); in OutputXmlTestInfo()
3814 test_info.should_run() in OutputXmlTestInfo()
4187 test_info.should_run() ? "RUN" : "NOTRUN", kIndent); in OutputJsonTestInfo()
[all …]