| /third_party/googletest/googletest/src/ |
| H A D | gtest-typed-test.cc | 68 std::set<std::string> tests; in VerifyRegisteredTestNames() local 72 if (tests.count(name) != 0) { in VerifyRegisteredTestNames() 78 tests.insert(name); in VerifyRegisteredTestNames() 87 if (tests.count(it->first) == 0) { in VerifyRegisteredTestNames()
|
| /third_party/libabigail/tests/ |
| H A D | test-alt-dwarf-file.cc | 10 /// This program tests that libabigail can handle alternate debug info 20 using abigail::tests::emit_test_status_and_update_counters; 21 using abigail::tests::emit_test_summary; 85 using abigail::tests::get_src_dir; in main() 86 using abigail::tests::get_build_dir; in main() 99 in_elf_path = string(get_src_dir()) + "/tests/" + s->in_elf_path; in main() 101 string(get_src_dir()) + "/tests/" + s->debug_info_dir_path; in main() 102 ref_report_path = string(get_src_dir()) + "/tests/" + s->in_report_path; in main() 104 string(get_build_dir()) + "/tests/" + s->out_report_path; in main()
|
| H A D | test-lookup-syms.cc | 10 /// This program tests the ELF symbols lookup APIs from 21 using abigail::tests::emit_test_status_and_update_counters; 22 using abigail::tests::emit_test_summary; 91 using abigail::tests::get_src_dir; in main() 92 using abigail::tests::get_build_dir; in main() 103 in_elf_path = string(get_src_dir()) + "/tests/" + s->in_elf_path; in main() 106 ref_report_path = string(get_src_dir()) + "/tests/" + s->in_report_path; in main() 108 string(get_build_dir()) + "/tests/" + s->out_report_path; in main()
|
| /third_party/mesa3d/src/gtest/src/ |
| H A D | gtest-typed-test.cc | 69 std::set<std::string> tests; in VerifyRegisteredTestNames() local 73 if (tests.count(name) != 0) { in VerifyRegisteredTestNames() 89 tests.insert(name); in VerifyRegisteredTestNames() 99 if (tests.count(it->first) == 0) { in VerifyRegisteredTestNames()
|
| /third_party/node/test/parallel/ |
| H A D | test-http2-client-onconnect-errors.js | 64 const tests = specificTests.concat(genericTests); 73 server.listen(0, common.mustCall(() => runTest(tests.shift()))); 109 if (!tests.length) { 112 runTest(tests.shift());
|
| H A D | test-http-expect-handling.js | 7 const tests = [417, 417]; 24 if (testIdx === tests.length) { 28 const test = tests[testIdx];
|
| H A D | test-http-status-code.js | 31 const tests = [200, 202, 300, 404, 451, 500]; 33 const countdown = new Countdown(tests.length, () => s.close()); 46 test = tests.shift();
|
| /third_party/node/test/sequential/ |
| H A D | test-https-server-keep-alive-timeout.js | 12 const tests = []; 20 if (!tests.length) { 23 tests.push(fn); 27 const fn = tests.shift();
|
| /third_party/node/deps/googletest/src/ |
| H A D | gtest-typed-test.cc | 72 std::set<std::string> tests; in VerifyRegisteredTestNames() local 76 if (tests.count(name) != 0) { in VerifyRegisteredTestNames() 82 tests.insert(name); in VerifyRegisteredTestNames() 91 if (tests.count(it->first) == 0) { in VerifyRegisteredTestNames()
|
| /third_party/ltp/testcases/kernel/syscalls/inotify/ |
| H A D | inotify06.c | 63 int i, tests; in verify_inotify() local 77 for (tests = 0; tests < TEARDOWNS; tests++) { in verify_inotify()
|
| /third_party/openssl/test/ |
| H A D | generate_ssl_tests.pl | 38 use lib "$FindBin::Bin/ssl-tests"; 51 my $num = scalar @ssltests::tests; 54 foreach my $test (@ssltests::tests) { 97 # for n tests, that each look like this: 116 foreach my $test (@ssltests::tests) { 124 foreach my $test (@ssltests::tests) { 151 # Reads the tests into ssltests::tests.
|
| H A D | mdc2_internal_test.c | 10 /* Internal tests for the mdc2 module */ 37 static TESTDATA tests[] = { variable 57 const TESTDATA testdata = tests[idx]; in test_mdc2() 75 ADD_ALL_TESTS(test_mdc2, OSSL_NELEM(tests)); in setup_tests()
|
| /third_party/python/Lib/lib2to3/tests/ |
| H A D | support.py | 29 def run_all_tests(test_mod=None, tests=None): 30 if tests is None: 31 tests = unittest.TestLoader().loadTestsFromModule(test_mod) 32 unittest.TextTestRunner(verbosity=2).run(tests) 39 A convenience function for creating a RefactoringTool for tests.
|
| /third_party/mbedtls/tests/scripts/ |
| H A D | check-generated-files.sh | 26 test -d include -a -d library -a -d programs -a -d tests 30 test -d include -a -d core -a -d drivers -a -d programs -a -d tests 131 check tests/scripts/generate_bignum_tests.py $(tests/scripts/generate_bignum_tests.py --list) 132 check tests/scripts/generate_ecp_tests.py $(tests/scripts/generate_ecp_tests.py --list) 133 check tests/scripts/generate_psa_tests.py $(tests/scripts/generate_psa_tests.py --list) 151 check tests/scripts/generate_psa_wrappers.py tests/includ [all...] |
| /third_party/mesa3d/src/gallium/tests/unit/ |
| H A D | u_prim_verts_test.c | 12 struct test_info tests[] = { variable 33 for(int i = 0; i < ARRAY_SIZE(tests); i++) { in main() 34 struct test_info *info = &tests[i]; in main()
|
| /third_party/node/deps/v8/tools/ |
| H A D | test262-results-parser.js | 6 // the json file and return a list of failing tests that can be copied 12 // $ tools/run-tests.py --gn test262 --json-test-results=tools/.test262-results.json 31 tests = new Set(); 34 tests.add(` '${test.join('/')}': [FAIL],`); 38 [...tests].sort().forEach(i => console.log(i));
|
| /third_party/ltp/testcases/kernel/syscalls/sigtimedwait/ |
| H A D | sigtimedwait01.c | 12 struct sigwait_test_desc tests[] = { variable 26 struct sigwait_test_desc *tc = &tests[i]; in run() 33 .tcnt = ARRAY_SIZE(tests),
|
| /third_party/ltp/testcases/kernel/syscalls/sigwait/ |
| H A D | sigwait01.c | 19 struct sigwait_test_desc tests[] = { variable 26 struct sigwait_test_desc *tc = &tests[i]; in run() 33 .tcnt = ARRAY_SIZE(tests),
|
| /third_party/ltp/testcases/kernel/syscalls/sigwaitinfo/ |
| H A D | sigwaitinfo01.c | 12 struct sigwait_test_desc tests[] = { variable 24 struct sigwait_test_desc *tc = &tests[i]; in run() 31 .tcnt = ARRAY_SIZE(tests),
|
| /third_party/skia/tests/ |
| H A D | PathOpsDLineTest.cpp | 8 #include "tests/PathOpsTestCommon.h" 9 #include "tests/Test.h" 11 static const SkDLine tests[] = { variable 20 static const size_t tests_count = SK_ARRAY_COUNT(tests); 24 const SkDLine& line = tests[index]; in DEF_TEST()
|
| /third_party/icu/icu4c/source/test/intltest/ |
| H A D | regcoll.cpp | 209 static const UChar tests[][CollationRegressionTest::MAX_TOKEN_LEN] = in Test4054736() local 214 compareArray(*c, tests, UPRV_LENGTHOF(tests)); in Test4054736() 385 String[] tests = { in Test4062418() 389 static const UChar tests[][CollationRegressionTest::MAX_TOKEN_LEN] = in Test4062418() local 394 compareArray(*c, tests, UPRV_LENGTHOF(tests)); in Test4062418() 465 String[] tests = { in Test4066696() 471 String[] tests = { in Test4066696() 477 static const UChar tests[][CollationRegressionTes in Test4066696() local 613 static const UChar tests[][CollationRegressionTest::MAX_TOKEN_LEN] = Test4087241() local 634 static const UChar tests[][CollationRegressionTest::MAX_TOKEN_LEN] = Test4087243() local 667 static const UChar tests[][CollationRegressionTest::MAX_TOKEN_LEN] = Test4092260() local 695 static const UChar tests[][CollationRegressionTest::MAX_TOKEN_LEN] = Test4095316() local 744 static const UChar tests[][CollationRegressionTest::MAX_TOKEN_LEN] = Test4103436() local 1252 compareArray(Collator &c, const UChar tests[][CollationRegressionTest::MAX_TOKEN_LEN], int32_t testCount) compareArray() argument [all...] |
| H A D | calcasts.cpp | 121 static const TestCase tests[] = { in IslamicCivil() local 171 doTestCases(tests, c); in IslamicCivil() 210 static const TestCase tests[] = { in Hebrew() local 302 doTestCases(tests, c); in Hebrew() 331 static const TestCase tests[] = { in Indian() local 388 doTestCases(tests, c); in Indian() 394 static const TestCase tests[] = { in Coptic() local 433 doTestCases(tests, c); in Coptic() 439 static TestCase tests[] = { in Ethiopic() local 481 doTestCases(tests, in Ethiopic() [all...] |
| /third_party/node/test/internet/ |
| H A D | test-trace-events-dns.js | 24 const tests = { 43 for (const tr in tests) { 48 test_str + tests[tr],
|
| /third_party/node/test/fixtures/wpt/resources/ |
| H A D | testharnessreport.js | 6 * testharness.js tests with their own test systems. 11 * add_completion_callback(callback(tests, harness_status)). 17 function dump_test_results(tests, status) { 21 var test_results = tests.map(function(x) { 25 tests:test_results,
|
| /third_party/ltp/testcases/kernel/syscalls/ipc/semctl/ |
| H A D | semctl05.c | 34 } tests[] = { variable 42 struct tcases *tc = &tests[n]; in verify_semctl() 67 .tcnt = ARRAY_SIZE(tests),
|