/third_party/libunwind/libunwind/tests/ |
H A D | test-coredump-unwind.c | 282 char test_names[TEST_FRAMES][TEST_NAME_LEN]; in main() local 357 if (unw_get_proc_name(&c, test_names[test_cur], sizeof(test_names[0]), &off) != 0) in main() 359 test_names[test_cur][0] = '\0'; in main() 389 ( strcmp(test_names[0], "a") in main() 390 || strcmp(test_names[1], "b") in main() 391 || strcmp(test_names[2], "b") in main() 392 || strcmp(test_names[3], "main") in main()
|
/third_party/spirv-tools/test/diff/diff_files/ |
H A D | generate_tests.py | 268 def generate_tests(diff_tool, test_names): 269 return [generate_test(diff_tool, test_name) for test_name in test_names] 295 test_names = sorted([f[:-11] for f in glob.glob("*_src.spvasm")]) 297 test_files = generate_tests(diff_tool, test_names)
|
/third_party/googletest/googletest/test/ |
H A D | googletest-param-test-test.cc | 961 std::set<std::string> test_names; in TEST() local 968 test_names.insert(std::string(test_info->name())); in TEST() 971 EXPECT_EQ(1u, test_names.count("CustomTestNames/FunctorName")); in TEST() 972 EXPECT_EQ(1u, test_names.count("CustomTestNames/FunctionName")); in TEST() 973 EXPECT_EQ(1u, test_names.count("CustomTestNames/FunctionNameP")); in TEST() 974 EXPECT_EQ(1u, test_names.count("CustomTestNames/LambdaName")); in TEST()
|
/third_party/googletest/googletest/include/gtest/internal/ |
H A D | gtest-internal.h | 719 const char* case_name, const char* test_names, int index, in Register() 732 StripTrailingSpaces(GetPrefixUntilComma(test_names)).c_str(), in Register() 747 test_names, in Register() 758 const char* /*case_name*/, const char* /*test_names*/, in Register() 780 const char* test_names, in Register() 785 StripTrailingSpaces(GetPrefixUntilComma(test_names)); in Register() 800 prefix, test_location, case_name, test_names, 0, type_names); in Register() 806 SkipComma(test_names), in Register() 817 const char* /*case_name*/, const char* /*test_names*/, in Register() 718 Register(const char* prefix, const CodeLocation& code_location, const char* case_name, const char* test_names, int index, const std::vector<std::string>& type_names = GenerateNames<DefaultNameGenerator, Types>()) Register() argument 778 Register(const char* prefix, CodeLocation code_location, const TypedTestSuitePState* state, const char* case_name, const char* test_names, const std::vector<std::string>& type_names = GenerateNames<DefaultNameGenerator, Types>()) Register() argument
|
/third_party/mesa3d/src/gtest/include/gtest/internal/ |
H A D | gtest-internal.h | 696 const char* case_name, const char* test_names, int index, in Register() 709 StripTrailingSpaces(GetPrefixUntilComma(test_names)).c_str(), in Register() 724 test_names, in Register() 735 const char* /*case_name*/, const char* /*test_names*/, in Register() 752 const char* test_names, in Register() 756 GetPrefixUntilComma(test_names)); in Register() 771 prefix, test_location, case_name, test_names, 0, type_names); in Register() 777 SkipComma(test_names), in Register() 788 const char* /*case_name*/, const char* /*test_names*/, in Register() 695 Register(const char* prefix, const CodeLocation& code_location, const char* case_name, const char* test_names, int index, const std::vector<std::string>& type_names = GenerateNames<DefaultNameGenerator, Types>()) Register() argument 750 Register(const char* prefix, CodeLocation code_location, const TypedTestSuitePState* state, const char* case_name, const char* test_names, const std::vector<std::string>& type_names = GenerateNames<DefaultNameGenerator, Types>()) Register() argument
|
/third_party/node/deps/googletest/include/gtest/internal/ |
H A D | gtest-internal.h | 704 const char* case_name, const char* test_names, int index, in Register() 717 StripTrailingSpaces(GetPrefixUntilComma(test_names)).c_str(), in Register() 732 test_names, in Register() 743 const char* /*case_name*/, const char* /*test_names*/, in Register() 765 const char* test_names, in Register() 770 StripTrailingSpaces(GetPrefixUntilComma(test_names)); in Register() 785 prefix, test_location, case_name, test_names, 0, type_names); in Register() 791 SkipComma(test_names), in Register() 802 const char* /*case_name*/, const char* /*test_names*/, in Register() 703 Register(const char* prefix, const CodeLocation& code_location, const char* case_name, const char* test_names, int index, const std::vector<std::string>& type_names = GenerateNames<DefaultNameGenerator, Types>()) Register() argument 763 Register(const char* prefix, CodeLocation code_location, const TypedTestSuitePState* state, const char* case_name, const char* test_names, const std::vector<std::string>& type_names = GenerateNames<DefaultNameGenerator, Types>()) Register() argument
|
/third_party/python/Lib/test/ |
H A D | test___future__.py | 10 def test_names(self): member in FutureTest
|
H A D | test_regrtest.py | 733 test_names = sorted(tests.values()) 736 output = self.run_tests('-u', 'all', *test_names) 737 self.check_executed_tests(output, test_names) 740 output = self.run_tests('-uaudio', *test_names) 741 self.check_executed_tests(output, test_names, 745 output = self.run_tests(*test_names) 746 self.check_executed_tests(output, test_names, 747 skipped=test_names)
|
H A D | test_weakref.py | 2140 def test_names(self): member in ModuleTestCase
|
/third_party/python/Lib/tkinter/test/test_tkinter/ |
H A D | test_font.py | 102 def test_names(self): member in FontTest 137 def test_names(self): member in DefaultRootTest
|
/third_party/python/Lib/unittest/test/ |
H A D | test_loader.py | 1473 test_names = ['test_2', 'test_1'] 1474 self.assertEqual(loader.getTestCaseNames(Foo), test_names) 1487 test_names = ['test_2', 'test_3', 'test_1'] 1488 self.assertEqual(loader.getTestCaseNames(Foo), sorted(test_names)) 1503 test_names = ['test_2', 'test_1'] 1504 self.assertEqual(set(loader.getTestCaseNames(Foo)), set(test_names)) 1590 test_names = ['test_partial'] 1591 self.assertEqual(loader.getTestCaseNames(Foo), test_names)
|
/third_party/skia/third_party/externals/angle2/src/tests/ |
H A D | capture_replay_tests.py | 843 test_names = ParseTestNamesFromTestList(test_list, test_expectation, 846 test_names, args.also_run_skipped_for_capture_tests) 853 num_tests = len(test_names) 864 test_name = test_names[test_index]
|
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | psa_storage.py | 189 def test_names(self): member in TestKey
|
/third_party/python/Tools/stringbench/ |
H A D | stringbench.py | 1410 (options, test_names) = parser.parse_args() 1417 if test_names: 1418 for name in test_names:
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/ |
H A D | conformance_testing.h | 1177 due_to(TestNames&&... test_names) && { in due_to() 1179 absl::AsciiStrToLower(absl::string_view(test_names))...); in due_to() 1190 due_to(TestNames&&... test_names) && { in due_to()
|
H A D | conformance_profile.h | 138 const std::set<std::string>& test_names) const { in expectFailedTests() 151 absl::c_set_difference(test_names, test_failures_, in expectFailedTests()
|