/third_party/googletest/googletest/test/ |
D | gtest-unittest-api_test.cc | 145 EXPECT_TRUE(test_suite->should_run()); in TEST() 156 EXPECT_FALSE(tests[0]->should_run()); in TEST() 162 EXPECT_TRUE(tests[1]->should_run()); in TEST() 168 EXPECT_TRUE(tests[2]->should_run()); in TEST() 174 EXPECT_TRUE(tests[3]->should_run()); in TEST() 184 EXPECT_TRUE(test_suite->should_run()); in TEST() 195 EXPECT_TRUE(tests[0]->should_run()); in TEST() 206 EXPECT_FALSE(test_suite->should_run()); in TEST() 216 EXPECT_FALSE(test_info->should_run()); in TEST() 241 EXPECT_TRUE(test_suites[0]->should_run()); in TearDown() [all …]
|
/third_party/rust/crates/bindgen/bindgen/codegen/postprocessing/ |
D | mod.rs | 14 should_run: fn(&BindgenOptions) -> bool, field 23 should_run: |options| options.$pass, 36 let require_syn = PASSES.iter().any(|pass| (pass.should_run)(options)); in postprocessing() 53 if (pass.should_run)(options) { in postprocessing()
|
/third_party/gn/src/util/test/ |
D | gn_test.cc | 37 bool should_run; member 138 tests[i].should_run = TestMatchesFilter(tests[i].name, test_filter); in main() 139 if (tests[i].should_run) { in main() 164 if (!tests[i].should_run) in main()
|
/third_party/ninja/src/ |
D | ninja_test.cc | 36 bool should_run; member 140 if ((tests[i].should_run = TestMatchesFilter(tests[i].name, test_filter))) in main() 145 if (!tests[i].should_run) continue; in main()
|
/third_party/skia/tests/ |
D | skia_test.cpp | 133 static bool should_run(const char* testName, bool isGPUTest, bool isGraphiteTest) { in should_run() function 228 if (should_run(test.fName, test.fNeedsGpu, test.fNeedsGraphite)) { in main() 244 if (!should_run(test.fName, test.fNeedsGpu, test.fNeedsGraphite)) { in main()
|
/third_party/skia/third_party/externals/tint/src/transform/ |
D | decompose_strided_matrix.cc | 111 bool should_run = false; in ShouldRun() local 114 should_run = true; in ShouldRun() 117 return should_run; in ShouldRun()
|
/third_party/skia/tools/calmbench/ |
D | ab.py | 212 should_run = not args.noinit and not (name == args.b and args.skip_b) 214 should_run = True # always run for suspects 216 if should_run:
|
/third_party/googletest/googletest/include/gtest/ |
D | gtest.h | 597 bool should_run() const { return should_run_; } in should_run() function 712 bool should_run() const { return should_run_; } in should_run() function 816 return test_info->should_run() && test_info->result()->Passed(); in TestPassed() 821 return test_info->should_run() && test_info->result()->Skipped(); in TestSkipped() 826 return test_info->should_run() && test_info->result()->Failed(); in TestFailed() 847 return test_info->should_run(); in ShouldRunTest()
|
/third_party/node/deps/googletest/include/gtest/ |
D | gtest.h | 590 bool should_run() const { return should_run_; } in should_run() function 705 bool should_run() const { return should_run_; } in should_run() function 809 return test_info->should_run() && test_info->result()->Passed(); in TestPassed() 814 return test_info->should_run() && test_info->result()->Skipped(); in TestSkipped() 819 return test_info->should_run() && test_info->result()->Failed(); in TestFailed() 840 return test_info->should_run(); in ShouldRunTest()
|
/third_party/mesa3d/src/gtest/include/gtest/ |
D | gtest.h | 751 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()
|
/third_party/googletest/googletest/src/ |
D | gtest.cc | 427 return test_suite->should_run() && test_suite->Passed(); in TestSuitePassed() 432 return test_suite->should_run() && test_suite->Failed(); in TestSuiteFailed() 438 return test_suite->should_run(); in ShouldRunTestSuite() 3541 if (!test_suite.should_run() || (test_suite.failed_test_count() == 0)) { in PrintFailedTests() 3546 if (!test_info.should_run() || !test_info.result()->Failed()) { in PrintFailedTests() 3566 if (!test_suite.should_run()) { in PrintFailedTestSuites() 3590 if (!test_suite.should_run() || (test_suite.skipped_test_count() == 0)) { in PrintSkippedTests() 3595 if (!test_info.should_run() || !test_info.result()->Skipped()) { in PrintSkippedTests() 4235 test_info.should_run() ? "run" : "notrun"); in OutputXmlTestInfo() 4237 test_info.should_run() in OutputXmlTestInfo() [all …]
|
/third_party/node/deps/googletest/src/ |
D | gtest.cc | 435 return test_suite->should_run() && test_suite->Passed(); in TestSuitePassed() 440 return test_suite->should_run() && test_suite->Failed(); in TestSuiteFailed() 446 return test_suite->should_run(); in ShouldRunTestSuite() 3569 if (!test_suite.should_run() || (test_suite.failed_test_count() == 0)) { in PrintFailedTests() 3574 if (!test_info.should_run() || !test_info.result()->Failed()) { in PrintFailedTests() 3594 if (!test_suite.should_run()) { in PrintFailedTestSuites() 3618 if (!test_suite.should_run() || (test_suite.skipped_test_count() == 0)) { in PrintSkippedTests() 3623 if (!test_info.should_run() || !test_info.result()->Skipped()) { in PrintSkippedTests() 4270 test_info.should_run() ? "run" : "notrun"); in OutputXmlTestInfo() 4272 test_info.should_run() in OutputXmlTestInfo() [all …]
|
/third_party/mesa3d/src/gtest/src/ |
D | gtest.cc | 369 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 …]
|
/third_party/googletest/docs/reference/ |
D | testing.md | 579 ##### should_run {#TestSuite::should_run} 581 `bool TestSuite::should_run() const` 726 ##### should_run {#TestInfo::should_run} 728 `bool TestInfo::should_run() const`
|
/third_party/cef/tools/distrib/gtest/ |
D | gtest-all.cc | 1875 return test_suite->should_run() && test_suite->Passed(); in TestSuitePassed() 1880 return test_suite->should_run() && test_suite->Failed(); in TestSuiteFailed() 1886 return test_suite->should_run(); in ShouldRunTestSuite() 5031 if (!test_suite.should_run() || (test_suite.failed_test_count() == 0)) { in PrintFailedTests() 5036 if (!test_info.should_run() || !test_info.result()->Failed()) { in PrintFailedTests() 5056 if (!test_suite.should_run()) { in PrintFailedTestSuites() 5080 if (!test_suite.should_run() || (test_suite.skipped_test_count() == 0)) { in PrintSkippedTests() 5085 if (!test_info.should_run() || !test_info.result()->Skipped()) { in PrintSkippedTests() 5719 test_info.should_run() ? "run" : "notrun"); in OutputXmlTestInfo() 5721 test_info.should_run() in OutputXmlTestInfo() [all …]
|
D | gtest.h | 10645 bool should_run() const { return should_run_; } 10759 bool should_run() const { return should_run_; } 10863 return test_info->should_run() && test_info->result()->Passed(); 10868 return test_info->should_run() && test_info->result()->Skipped(); 10873 return test_info->should_run() && test_info->result()->Failed(); 10894 return test_info->should_run();
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 26745 bool should_run; member
|