Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/utils/unittest/googletest/include/gtest/
H A Dgtest.h750 bool should_run() const { return should_run_; } in should_run() function
861 bool should_run() const { return should_run_; } in should_run() function
960 return test_info->should_run() && test_info->result()->Passed(); in TestPassed()
965 return test_info->should_run() && test_info->result()->Skipped(); in TestSkipped()
970 return test_info->should_run() && test_info->result()->Failed(); in TestFailed()
991 return test_info->should_run(); in ShouldRunTest()
/llvm-project-15.0.7/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()
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()
4189 test_info.should_run() in OutputJsonTestInfo()
[all …]