| /freebsd-14.2/contrib/googletest/googletest/test/ |
| H A D | gtest-unittest-api_test.cc | 76 if (0 == strcmp(test_suite->name(), name)) return test_suite; in FindTestSuite() 86 test_suite->total_test_count())]; in GetSortedTests() 89 tests[i] = test_suite->GetTestInfo(i); in GetSortedTests() 141 ASSERT_TRUE(test_suite != nullptr); in TEST() 143 EXPECT_STREQ("ApiTest", test_suite->name()); in TEST() 145 EXPECT_TRUE(test_suite->should_run()); in TEST() 148 ASSERT_EQ(4, test_suite->total_test_count()); in TEST() 180 ASSERT_TRUE(test_suite != nullptr); in TEST() 184 EXPECT_TRUE(test_suite->should_run()); in TEST() 202 ASSERT_TRUE(test_suite != nullptr); in TEST() [all …]
|
| H A D | googletest-failfast-unittest.py | 107 if test_suite: 245 test_suite, argument 271 test_suite, argument 283 test_suite, 293 test_suite, argument 305 test_suite, 316 test_suite='HasFixtureTest', 323 test_suite='HasFixtureTest', 333 test_suite='HasSimpleTest', 340 test_suite='HasSimpleTest', [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-14.2/contrib/kyua/store/ |
| H A D | layout.cpp | 68 find_latest(const std::string& test_suite) in find_latest() argument 93 % test_suite); in find_latest() 99 % test_suite); in find_latest() 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() 257 test_suite = path.to_absolute().str(); in test_suite_for_path() 258 PRE(!test_suite.empty() && test_suite[0] == '/'); in test_suite_for_path() 260 std::replace(test_suite.begin(), test_suite.end(), '/', '_'); in test_suite_for_path() 261 test_suite.erase(0, 1); 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-14.2/contrib/kyua/integration/ |
| H A D | cmd_list_test.sh | 34 test_suite("integration") 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") 321 test_suite("top-level") [all …]
|
| H A D | cmd_test_test.sh | 36 test_suite("integration") 61 test_suite("integration") 86 test_suite("integration") 285 test_suite("top-level") 292 test_suite("in-subdir") 318 test_suite("top-level") 343 test_suite("top-level") 383 test_suite("top-level") 392 test_suite("in-subdir") 431 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-14.2/contrib/googletest/googletest/src/ |
| H A 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() 3450 const TestSuite& test_suite) { in OnTestSuiteStart() argument 3553 if (!test_suite.should_run() || (test_suite.failed_test_count() == 0)) { in PrintFailedTests() 3602 if (!test_suite.should_run() || (test_suite.skipped_test_count() == 0)) { in PrintSkippedTests() 4344 OutputXmlTestInfo(stream, test_suite.name(), *test_suite.GetTestInfo(i)); in PrintXmlTestSuite() 4790 OutputJsonTestInfo(stream, test_suite.name(), *test_suite.GetTestInfo(i)); in PrintJsonTestSuite() 5754 const auto test_suite = in GetTestSuite() local 5758 if (test_suite != test_suites_.rend()) return *test_suite; in GetTestSuite() [all …]
|
| /freebsd-14.2/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-14.2/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-14.2/contrib/kyua/bootstrap/ |
| H A D | Kyuafile | 3 test_suite("kyua")
|
| /freebsd-14.2/contrib/kyua/doc/ |
| H A D | Kyuafile | 3 test_suite("kyua")
|
| /freebsd-14.2/contrib/kyua/examples/ |
| H A D | Kyuafile | 3 test_suite("kyua")
|
| /freebsd-14.2/contrib/kyua/utils/logging/ |
| H A D | Kyuafile | 3 test_suite("kyua")
|
| /freebsd-14.2/contrib/kyua/drivers/ |
| H A D | Kyuafile | 3 test_suite("kyua")
|
| /freebsd-14.2/contrib/kyua/utils/format/ |
| H A D | Kyuafile | 3 test_suite("kyua")
|
| /freebsd-14.2/contrib/kyua/utils/sqlite/ |
| H A D | Kyuafile | 3 test_suite("kyua")
|
| /freebsd-14.2/contrib/kyua/utils/text/ |
| H A D | Kyuafile | 3 test_suite("kyua")
|
| /freebsd-14.2/contrib/kyua/utils/signals/ |
| H A D | Kyuafile | 3 test_suite("kyua")
|
| /freebsd-14.2/contrib/atf/test-programs/ |
| H A D | Kyuafile | 3 test_suite("atf")
|
| /freebsd-14.2/contrib/atf/ |
| H A D | Kyuafile | 3 test_suite("atf")
|
| /freebsd-14.2/contrib/kyua/utils/fs/ |
| H A D | Kyuafile | 3 test_suite("kyua")
|
| /freebsd-14.2/contrib/kyua/model/ |
| H A D | Kyuafile | 3 test_suite("kyua")
|
| /freebsd-14.2/contrib/kyua/utils/config/ |
| H A D | Kyuafile | 3 test_suite("kyua")
|