| /third_party/ffmpeg/tests/ |
| H A D | Makefile | 6 # For some tests it is also set to 1 if it is unset; this indicates 9 # files for other tests (mostly the seek-tests). 15 VREF = tests/vsynth1/00.pgm 16 AREF = tests/data/asynth1.sw 25 APITESTSDIR := tests/api 26 FATE_OUTDIRS = tests/data tests/data/fate tests/data/filtergraphs tests/dat [all...] |
| /third_party/googletest/googletest/test/ |
| H A D | gtest-unittest-api_test.cc | 32 // This file contains tests verifying correctness of data provided via 81 // Returns the array of pointers to all tests in a particular test suite 85 TestInfo const** const tests = new const TestInfo*[static_cast<size_t>( in GetSortedTests() local 89 tests[i] = test_suite->GetTestInfo(i); in GetSortedTests() 91 std::sort(tests, tests + test_suite->total_test_count(), in GetSortedTests() 93 return tests; in GetSortedTests() 105 // We can only test the accessors that do not change value while tests run. 106 // Since tests can be run in any order, the values the accessors that track 150 const TestInfo** tests in TEST() local 269 const TestInfo** tests = UnitTestHelper::GetSortedTests(test_suite); global() variable [all...] |
| /third_party/ffmpeg/tests/fate/ |
| H A D | libavutil.mak | 2 fate-adler32: libavutil/tests/adler32$(EXESUF) 3 fate-adler32: CMD = run libavutil/tests/adler32$(EXESUF) 7 fate-aes: libavutil/tests/aes$(EXESUF) 8 fate-aes: CMD = run libavutil/tests/aes$(EXESUF) 12 fate-aes_ctr: libavutil/tests/aes_ctr$(EXESUF) 13 fate-aes_ctr: CMD = run libavutil/tests/aes_ctr$(EXESUF) 17 fate-camellia: libavutil/tests/camellia$(EXESUF) 18 fate-camellia: CMD = run libavutil/tests/camellia$(EXESUF) 22 fate-cast5: libavutil/tests/cast5$(EXESUF) 23 fate-cast5: CMD = run libavutil/tests/cast [all...] |
| H A D | libavcodec.mak | 2 fate-avpacket: libavcodec/tests/avpacket$(EXESUF) 3 fate-avpacket: CMD = run libavcodec/tests/avpacket$(EXESUF) 7 fate-cabac: libavcodec/tests/cabac$(EXESUF) 8 fate-cabac: CMD = run libavcodec/tests/cabac$(EXESUF) 12 fate-celp_math: libavcodec/tests/celp_math$(EXESUF) 13 fate-celp_math: CMD = run libavcodec/tests/celp_math$(EXESUF) 17 fate-codec_desc: libavcodec/tests/codec_desc$(EXESUF) 18 fate-codec_desc: CMD = run libavcodec/tests/codec_desc$(EXESUF) 22 fate-golomb: libavcodec/tests/golomb$(EXESUF) 23 fate-golomb: CMD = run libavcodec/tests/golom [all...] |
| H A D | hlsenc.mak | 0 tests/data/live_no_endlist.m3u8: TAG = GEN 2 tests/data/live_no_endlist.m3u8: ffmpeg$(PROGSSUF)$(EXESUF) | tests/data 5 -hls_flags omit_endlist -codec:a mp2fixed -hls_segment_filename $(TARGET_PATH)/tests/data/live_no_endlist_%03d.ts \ 6 $(TARGET_PATH)/tests/data/live_no_endlist.m3u8 2>/dev/null 9 fate-hls-live-no-endlist: tests/data/live_no_endlist.m3u8 10 fate-hls-live-no-endlist: SRC = $(TARGET_PATH)/tests/data/live_no_endlist.m3u8 15 tests/data/live_last_endlist.m3u8: TAG = GEN 16 tests/data/live_last_endlist.m3u8: ffmpeg$(PROGSSUF)$(EXESUF) | tests/dat [all...] |
| H A D | segment.mak | 0 tests/data/mp4-to-ts.m3u8: TAG = GEN 2 tests/data/mp4-to-ts.m3u8: ffmpeg$(PROGSSUF)$(EXESUF) | tests/data 6 -segment_list $(TARGET_PATH)/$@ -y $(TARGET_PATH)/tests/data/mp4-to-ts-%03d.ts 2>/dev/null 8 tests/data/adts-to-mkv.m3u8: TAG = GEN 9 tests/data/adts-to-mkv.m3u8: ffmpeg$(PROGSSUF)$(EXESUF) | tests/data 13 -segment_list $(TARGET_PATH)/$@ -y $(TARGET_PATH)/tests/data/adts-to-mkv-%03d.mkv 2>/dev/null 15 tests/data/adts-to-mkv-header.mkv: TAG = GEN 16 tests/dat [all...] |
| H A D | libavformat.mak | 2 #fate-async: libavformat/tests/async$(EXESUF) 3 #fate-async: CMD = run libavformat/tests/async 6 fate-noproxy: libavformat/tests/noproxy$(EXESUF) 7 fate-noproxy: CMD = run libavformat/tests/noproxy$(EXESUF) 10 fate-rtmpdh: libavformat/tests/rtmpdh$(EXESUF) 11 fate-rtmpdh: CMD = run libavformat/tests/rtmpdh$(EXESUF) 14 fate-srtp: libavformat/tests/srtp$(EXESUF) 15 fate-srtp: CMD = run libavformat/tests/srtp$(EXESUF) 18 fate-url: libavformat/tests/url$(EXESUF) 19 fate-url: CMD = run libavformat/tests/ur [all...] |
| /kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/ |
| H A D | arg_parsing.c | 9 set->tests = NULL; in init_test_filter_set() 17 for (j = 0; j < set->tests[i].subtest_cnt; j++) in free_test_filter_set() 18 free((void *)set->tests[i].subtests[j]); in free_test_filter_set() 19 free(set->tests[i].subtests); in free_test_filter_set() 20 free(set->tests[i].name); in free_test_filter_set() 23 free(set->tests); in free_test_filter_set() 36 if (!ASSERT_OK_PTR(set.tests, "test filters initialized")) in test_parse_test_list() 38 ASSERT_EQ(set.tests[0].subtest_cnt, 0, "subtest filters count"); in test_parse_test_list() 39 ASSERT_OK(strcmp("arg_parsing", set.tests[0].name), "subtest name"); in test_parse_test_list() 46 if (!ASSERT_OK_PTR(set.tests, "tes in test_parse_test_list() [all...] |
| H A D | obj_name.c | 10 } tests[] = { in test_obj_name() local 23 for (i = 0; i < ARRAY_SIZE(tests); i++) { in test_obj_name() 24 size_t name_len = strlen(tests[i].name) + 1; in test_obj_name() 37 memcpy(attr.prog_name, tests[i].name, ncopy); in test_obj_name() 40 CHECK((tests[i].success && fd < 0) || in test_obj_name() 41 (!tests[i].success && fd >= 0) || in test_obj_name() 42 (!tests[i].success && errno != tests[i].expected_errno), in test_obj_name() 45 fd, tests[i].success, errno, tests[ in test_obj_name() [all...] |
| H A D | global_data.c | 18 } tests[] = { in test_global_data_number() local 32 for (i = 0; i < ARRAY_SIZE(tests); i++) { in test_global_data_number() 33 err = bpf_map_lookup_elem(map_fd, &tests[i].key, &num); in test_global_data_number() 34 CHECK(err || num != tests[i].num, tests[i].name, in test_global_data_number() 36 err, num, tests[i].num); in test_global_data_number() 53 } tests[] = { in test_global_data_string() local 61 for (i = 0; i < ARRAY_SIZE(tests); i++) { in test_global_data_string() 62 err = bpf_map_lookup_elem(map_fd, &tests[i].key, str); in test_global_data_string() 63 CHECK(err || memcmp(str, tests[ in test_global_data_string() 88 } tests[] = { test_global_data_struct() local [all...] |
| /third_party/node/deps/v8/tools/wasm/ |
| H A D | update-wasm-spec-tests.sh | 30 SPEC_TEST_DIR=${V8_DIR}/test/wasm-spec-tests 37 log_and_run rm -rf ${SPEC_TEST_DIR}/tests 38 log_and_run mkdir ${SPEC_TEST_DIR}/tests 40 log_and_run mkdir ${SPEC_TEST_DIR}/tests/proposals 45 log_and_run rm -rf ${JS_API_TEST_DIR}/tests 46 log_and_run mkdir ${JS_API_TEST_DIR}/tests 47 log_and_run mkdir ${JS_API_TEST_DIR}/tests/wpt 48 log_and_run mkdir ${JS_API_TEST_DIR}/tests/proposals 51 # Generate the spec tests. 64 log_and_run cp *.wast ${SPEC_TEST_DIR}/tests/ [all...] |
| /kernel/linux/linux-5.10/tools/testing/selftests/bpf/prog_tests/ |
| H A D | obj_name.c | 10 } tests[] = { in test_obj_name() local 23 for (i = 0; i < sizeof(tests) / sizeof(tests[0]); i++) { in test_obj_name() 24 size_t name_len = strlen(tests[i].name) + 1; in test_obj_name() 37 memcpy(attr.prog_name, tests[i].name, ncopy); in test_obj_name() 40 CHECK((tests[i].success && fd < 0) || in test_obj_name() 41 (!tests[i].success && fd != -1) || in test_obj_name() 42 (!tests[i].success && errno != tests[i].expected_errno), in test_obj_name() 45 fd, tests[ in test_obj_name() [all...] |
| H A D | global_data.c | 18 } tests[] = { in test_global_data_number() local 32 for (i = 0; i < sizeof(tests) / sizeof(tests[0]); i++) { in test_global_data_number() 33 err = bpf_map_lookup_elem(map_fd, &tests[i].key, &num); in test_global_data_number() 34 CHECK(err || num != tests[i].num, tests[i].name, in test_global_data_number() 36 err, num, tests[i].num); in test_global_data_number() 53 } tests[] = { in test_global_data_string() local 61 for (i = 0; i < sizeof(tests) / sizeof(tests[ in test_global_data_string() 88 } tests[] = { test_global_data_struct() local [all...] |
| /third_party/libinput/test/ |
| H A D | test-utils.c | 256 struct parser_test tests[] = { in START_TEST() local 283 for (i = 0; tests[i].tag != NULL; i++) { in START_TEST() 284 dpi = parse_mouse_dpi_property(tests[i].tag); in START_TEST() 285 ck_assert_int_eq(dpi, tests[i].expected_value); in START_TEST() 295 struct parser_test tests[] = { in START_TEST() local 313 for (i = 0; tests[i].tag != NULL; i++) { in START_TEST() 314 angle = parse_mouse_wheel_click_angle_property(tests[i].tag); in START_TEST() 315 ck_assert_int_eq(angle, tests[i].expected_value); in START_TEST() 322 struct parser_test tests[] = { in START_TEST() local 340 for (i = 0; tests[ in START_TEST() 356 } tests[] = { START_TEST() local 403 } tests[] = { START_TEST() local 443 } tests[] = { START_TEST() local 492 } tests[] = { START_TEST() local 532 } tests[] = { START_TEST() local 565 } tests[] = { START_TEST() local 643 } tests[] = { START_TEST() local 690 } tests[] = { START_TEST() local 776 } tests[] = { START_TEST() local 809 struct atoi_test tests[] = { START_TEST() local 844 struct atoi_test tests[] = { START_TEST() local 878 struct atoi_test tests[] = { START_TEST() local 921 struct atou_test tests[] = { START_TEST() local 955 struct atou_test tests[] = { START_TEST() local 989 struct atou_test tests[] = { START_TEST() local 1030 } tests[] = { START_TEST() local 1078 } tests[] = { START_TEST() local 1130 } tests[] = { START_TEST() local 1172 } tests[] = { START_TEST() local 1214 } tests[] = { START_TEST() local 1259 } tests[] = { START_TEST() local 1297 } tests[] = { START_TEST() local 1335 } tests[] = { START_TEST() local 1359 } tests[] = { START_TEST() local 1382 } tests[] = { START_TEST() local 1407 } tests[] = { START_TEST() local 1438 } tests[] = { START_TEST() local 1468 } tests[] = { START_TEST() local 1536 } tests[] = { START_TEST() local 1564 } tests[] = { START_TEST() local [all...] |
| /third_party/python/Lib/test/ |
| H A D | bisect_cmd.py | 3 Command line tool to bisect failing CPython tests. 9 Find a reference leak in "test_os", write the list of failing tests into the 14 Load an existing list of tests from a file using -i option: 16 ./python -m test --list-cases -m FileTests test_os > tests 17 ./python -m test.bisect_cmd -i tests test_os 31 def write_tests(filename, tests): 33 for name in tests: 38 def write_output(filename, tests): 41 print("Writing %s tests into %s" % (len(tests), filenam [all...] |
| /third_party/node/test/parallel/ |
| H A D | test-trace-events-fs-async.js | 9 const tests = Object.create(null); 270 tests.access = wrapper(access); 271 tests.chmod = wrapper(chmod); 272 tests.chown = wrapper(chown, { uid, gid }); 273 tests.close = wrapper(close); 274 tests.copyfile = wrapper(copyfile); 275 tests.fchmod = wrapper(fchmod); 276 tests.fchown = wrapper(fchown, { uid, gid }); 277 tests.fdatasync = wrapper(fdatasync); 278 tests [all...] |
| /third_party/mesa3d/src/gallium/drivers/r300/compiler/tests/ |
| H A D | unit_test.c | 34 unsigned run_tests(struct test tests[]) in run_tests() argument 38 for (i = 0; tests[i].name; i++) { in run_tests() 39 printf("Test %s\n", tests[i].name); in run_tests() 40 memset(&tests[i].result, 0, sizeof(tests[i].result)); in run_tests() 41 tests[i].test_func(&tests[i].result); in run_tests() 42 printf("Test %s (%d/%d) pass\n", tests[i].name, in run_tests() 43 tests[i].result.pass, tests[ in run_tests() [all...] |
| /third_party/googletest/googletest/scripts/ |
| H A D | gen_gtest_pred_impl.py | 35 accompanying tests. 375 // learn how Google Test works by reading its unit tests, read 416 """Returns the tests for n-ary predicate assertions.""" 418 # A map that defines the values used in the template for the tests. 433 tests = ( 452 tests += """ 458 tests += Iter(n, 'const T%s& v%s', sep=""", 461 tests += """) { 467 tests += """ 472 tests [all...] |
| /third_party/curl/tests/unit/ |
| H A D | unit1323.c | 46 struct a tests[] = { variable 54 for(i = 0; i < sizeof(tests)/sizeof(tests[0]); i++) { 55 timediff_t result = Curl_timediff(tests[i].first, tests[i].second); 56 if(result != tests[i].result) { 58 (long)tests[i].first.tv_sec, 59 tests[i].first.tv_usec, 60 (long)tests[i].second.tv_sec, 61 tests[ [all...] |
| H A D | unit1607.c | 71 /* CURLOPT_RESOLVE address parsing tests */ 72 static const struct testcase tests[] = { variable 112 int testnum = sizeof(tests) / sizeof(struct testcase); 119 int addressnum = sizeof(tests[i].address) / sizeof(*tests[i].address); 133 list = curl_slist_append(NULL, tests[i].optval); 140 entry_id = (void *)aprintf("%s:%d", tests[i].host, tests[i].port); 153 if(!addr && !tests[i].address[j]) 156 if(tests[ [all...] |
| H A D | unit1609.c | 91 static const struct testcase tests[] = { variable 104 int testnum = sizeof(tests) / sizeof(struct testcase); 115 int addressnum = sizeof (tests[i].address) / sizeof (*tests[i].address); 132 list = curl_slist_append(NULL, tests[i].optval); 141 entry_id = (void *)aprintf("%s:%d", tests[i].host, tests[i].port); 155 if(!addr && !tests[i].address[j]) 160 fprintf(stderr, "%s:%d tests[%d] failed. Curl_addr2string failed.\n", 166 if(addr && !tests[ [all...] |
| /third_party/skia/tests/ |
| H A D | PathOpsDVectorTest.cpp | 8 #include "tests/PathOpsTestCommon.h" 9 #include "tests/Test.h" 11 static const SkDPoint tests[] = { variable 21 static const size_t tests_count = SK_ARRAY_COUNT(tests); 25 SkDVector v1 = tests[index + 1] - tests[index]; in DEF_TEST() 27 SkDVector v2 = tests[index] - tests[index + 1]; in DEF_TEST() 33 v1 = tests[index + 1] - tests[inde in DEF_TEST() [all...] |
| /third_party/musl/scripts/ |
| H A D | runtest.sh | 2 cd /data/tests/libc-test/src 3 rm /data/tests/libc-test/REPORT 4 rm /data/tests/libc-test/FileList.txt 5 rm /data/tests/libc-test/SkipList.txt 6 touch /data/tests/libc-test/REPORT 7 touch /data/tests/libc-test/FileList.txt 8 touch /data/tests/libc-test/SkipList.txt 46 echo $skiped >> /data/tests/libc-test/SkipList.txt 91 echo $file >> /data/tests/libc-test/FileList.txt 92 ./runtest -w '' -t 30 $file >> /data/tests/lib [all...] |
| /third_party/python/Lib/ |
| H A D | imghdr.py | 27 for tf in tests: 40 tests = [] variable 49 tests.append(test_jpeg) 55 tests.append(test_png) 62 tests.append(test_gif) 69 tests.append(test_tiff) 76 tests.append(test_rgb) 84 tests.append(test_pbm) 92 tests.append(test_pgm) 100 tests [all...] |
| /third_party/ltp/testcases/kernel/syscalls/set_thread_area/ |
| H A D | set_thread_area01.c | 57 static struct test tests[] = { variable 76 for (i = 0; i < sizeof(tests) / sizeof(struct test); i++) { in main() 77 TEST(tst_syscall(tests[i].syscall, tests[i].u_info)); in main() 79 if (TEST_RETURN != tests[i].exp_ret) { in main() 81 tests[i].syscall_name, in main() 82 TEST_RETURN, tests[i].exp_ret); in main() 86 if (TEST_ERRNO != tests[i].exp_errno) { in main() 89 tests[i].syscall_name, TEST_ERRNO, in main() 91 tests[ in main() [all...] |