/freebsd/contrib/googletest/googletest/test/ |
H A D | gtest-unittest-api_test.cc | 75 const TestSuite* test_suite = unit_test.GetTestSuite(i); in FindTestSuite() local 76 if (0 == strcmp(test_suite->name(), name)) return test_suite; in FindTestSuite() 84 static TestInfo const** GetSortedTests(const TestSuite* test_suite) { in GetSortedTests() argument 86 test_suite->total_test_count())]; in GetSortedTests() 88 for (int i = 0; i < test_suite->total_test_count(); ++i) in GetSortedTests() 89 tests[i] = test_suite->GetTestInfo(i); in GetSortedTests() 91 std::sort(tests, tests + test_suite->total_test_count(), in GetSortedTests() 140 const TestSuite* test_suite = UnitTestHelper::FindTestSuite("ApiTest"); in TEST() local 141 ASSERT_TRUE(test_suite != nullptr); in TEST() 143 EXPECT_STREQ("ApiTest", test_suite->name()); in TEST() [all …]
|
H A D | googletest-failfast-unittest.py | 92 def RunAndReturnOutput(test_suite=None, fail_fast=None, run_disabled=False): argument 107 if test_suite: 108 args += ['--%s=%s.*' % (FILTER_FLAG, test_suite)] 127 txt, _ = RunAndReturnOutput(test_suite='HasSimpleTest', fail_fast=True) 131 txt, _ = RunAndReturnOutput(test_suite='HasSimpleTest', fail_fast=False) 192 txt, _ = RunAndReturnOutput(test_suite='HasSkipTest', fail_fast=True) 209 txt, _ = RunAndReturnOutput(test_suite='HasSkipTest', fail_fast=False) 245 test_suite, argument 254 txt, xml = RunAndReturnOutput(test_suite, fail_fast, run_disabled) 271 test_suite, argument [all …]
|
H A D | googletest-failfast-unittest_.cc | 125 void OnTestSuiteStart(const ::testing::TestSuite& test_suite) override { in OnTestSuiteStart() argument 126 printf("We are in OnTestSuiteStart of %s.\n", test_suite.name()); in OnTestSuiteStart() 145 void OnTestSuiteEnd(const ::testing::TestSuite& test_suite) override { in OnTestSuiteEnd() argument 146 printf("We are in OnTestSuiteEnd of %s.\n", test_suite.name()); in OnTestSuiteEnd()
|
/freebsd/contrib/kyua/store/ |
H A D | layout.cpp | 68 find_latest(const std::string& test_suite) in find_latest() argument 73 F("^results.%s.[0-9]{8}-[0-9]{6}-[0-9]{6}.db$") % test_suite, 0); in find_latest() 93 % test_suite); in find_latest() 99 % test_suite); in find_latest() 113 new_id(const std::string& test_suite, const datetime::timestamp& when) in new_id() argument 117 return F("%s.%s-%06s") % test_suite % when_datetime % when_ms; in new_id() 149 const std::string test_suite = test_suite_for_path(fs::current_path()); in find_results() local 150 return find_latest(test_suite); in find_results() 253 std::string test_suite; in test_suite_for_path() local 255 test_suite = path.str(); in test_suite_for_path() [all …]
|
H A D | layout_test.cpp | 57 const std::string test_suite = layout::test_suite_for_path( in ATF_TEST_CASE_BODY() local 60 "results." + test_suite + ".")).str(); in ATF_TEST_CASE_BODY() 323 const std::string test_suite = layout::test_suite_for_path( in ATF_TEST_CASE_BODY() local 325 ATF_REQUIRE_MATCH("_foo_bar$", test_suite); in ATF_TEST_CASE_BODY() 326 ATF_REQUIRE_MATCH("^[^_]", test_suite); in ATF_TEST_CASE_BODY()
|
/freebsd/contrib/kyua/integration/ |
H A D | cmd_list_test.sh | 34 test_suite("integration") 45 test_suite("integration2") 68 test_suite("top-level") 75 test_suite("in-subdir") 92 test_suite("top-level") 110 test_suite("top-level") 143 test_suite("top-level") 152 test_suite("in-subdir") 184 test_suite("top-level") 202 test_suite("top-level") [all …]
|
H A D | cmd_test_test.sh | 36 test_suite("integration") 61 test_suite("integration") 86 test_suite("integration") 122 test_suite("integration") 160 test_suite("integration") 190 test_suite("integration") 221 test_suite("integration") 249 test_suite("integration") 259 test_suite("integration2") 285 test_suite("top-level") [all …]
|
H A D | cmd_debug_test.sh | 34 test_suite("integration") 51 test_suite("integration") 71 test_suite("integration") 93 test_suite("integration") 113 test_suite("integration") 152 test_suite("integration") 181 test_suite("integration") 213 test_suite("integration") 222 test_suite("integration") 243 test_suite("integration") [all …]
|
/freebsd/contrib/googletest/googletest/src/ |
H A D | gtest.cc | 439 static bool TestSuitePassed(const TestSuite* test_suite) { in TestSuitePassed() argument 440 return test_suite->should_run() && test_suite->Passed(); in TestSuitePassed() 444 static bool TestSuiteFailed(const TestSuite* test_suite) { in TestSuiteFailed() argument 445 return test_suite->should_run() && test_suite->Failed(); in TestSuiteFailed() 450 static bool ShouldRunTestSuite(const TestSuite* test_suite) { in ShouldRunTestSuite() argument 451 return test_suite->should_run(); in ShouldRunTestSuite() 527 MarkAsIgnored::MarkAsIgnored(const char* test_suite) { in MarkAsIgnored() argument 528 GetIgnoredParameterizedTestSuites()->insert(test_suite); in MarkAsIgnored() 2532 const TestSuite* const test_suite = impl->current_test_suite(); in HasSameFixtureClass() local 2535 const TestInfo* const first_test_info = test_suite->test_info_list()[0]; in HasSameFixtureClass() [all …]
|
/freebsd/contrib/kyua/engine/ |
H A D | kyuafile.cpp | 155 std::string test_suite; in get_test_suite() local 163 test_suite = _test_suite.get(); in get_test_suite() 165 test_suite = program_override; in get_test_suite() 168 return test_suite; in get_test_suite() 346 const std::string test_suite = get_test_suite(test_suite_override); in callback_test_program() local 350 test_suite, metadata, user_config, in callback_test_program() 459 std::string test_suite; in lua_generic_test_program() local 463 test_suite = state.to_string(-1); in lua_generic_test_program() 500 interface, path, test_suite, mdbuilder.build(), *user_config, in lua_generic_test_program()
|
/freebsd/contrib/googletest/googletest/samples/ |
H A D | sample9_unittest.cc | 132 const testing::TestSuite& test_suite = *unit_test.GetTestSuite(i); in main() local 133 for (int j = 0; j < test_suite.total_test_count(); ++j) { in main() 134 const TestInfo& test_info = *test_suite.GetTestInfo(j); in main()
|
/freebsd/contrib/kyua/doc/ |
H A D | Kyuafile | 3 test_suite("kyua")
|
/freebsd/contrib/kyua/bootstrap/ |
H A D | Kyuafile | 3 test_suite("kyua")
|
/freebsd/contrib/kyua/examples/ |
H A D | Kyuafile | 3 test_suite("kyua")
|
/freebsd/contrib/kyua/utils/logging/ |
H A D | Kyuafile | 3 test_suite("kyua")
|
/freebsd/contrib/kyua/drivers/ |
H A D | Kyuafile | 3 test_suite("kyua")
|
/freebsd/contrib/kyua/utils/format/ |
H A D | Kyuafile | 3 test_suite("kyua")
|
/freebsd/contrib/kyua/utils/signals/ |
H A D | Kyuafile | 3 test_suite("kyua")
|
/freebsd/contrib/kyua/utils/sqlite/ |
H A D | Kyuafile | 3 test_suite("kyua")
|
/freebsd/contrib/kyua/utils/text/ |
H A D | Kyuafile | 3 test_suite("kyua")
|
/freebsd/contrib/atf/test-programs/ |
H A D | Kyuafile | 3 test_suite("atf")
|
/freebsd/contrib/atf/ |
H A D | Kyuafile | 3 test_suite("atf")
|
/freebsd/contrib/kyua/model/ |
H A D | Kyuafile | 3 test_suite("kyua")
|
/freebsd/contrib/kyua/utils/config/ |
H A D | Kyuafile | 3 test_suite("kyua")
|
/freebsd/contrib/kyua/utils/fs/ |
H A D | Kyuafile | 3 test_suite("kyua")
|