Home
last modified time | relevance | path

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

/third_party/googletest/googletest/test/
Dgtest-unittest-api_test.cc145 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/
Dmod.rs14 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/
Dgn_test.cc37 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/
Dninja_test.cc36 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/
Dskia_test.cpp133 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/
Ddecompose_strided_matrix.cc111 bool should_run = false; in ShouldRun() local
114 should_run = true; in ShouldRun()
117 return should_run; in ShouldRun()
/third_party/skia/tools/calmbench/
Dab.py212 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/
Dgtest.h597 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/
Dgtest.h590 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/
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()
/third_party/googletest/googletest/src/
Dgtest.cc427 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/
Dgtest.cc435 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/
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 …]
/third_party/googletest/docs/reference/
Dtesting.md579 ##### 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/
Dgtest-all.cc1875 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 …]
Dgtest.h10645 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/
Dvmlinux.h26745 bool should_run; member