Home
last modified time | relevance | path

Searched refs:testcases (Results 1 – 25 of 40) sorted by relevance

12

/freebsd-12.1/crypto/heimdal/lib/wind/
H A Dtest-rw.c50 } testcases[] = { variable
156 for (n = 0; n < sizeof(testcases)/sizeof(testcases[0]); n++) { in main()
157 flags = testcases[n].in_flags; in main()
159 datalen = testcases[n].ucs2_len; in main()
162 ret = wind_ucs2read(testcases[n].in_ptr, in main()
163 testcases[n].in_len, in main()
167 if (ret != testcases[n].ret) in main()
174 if (flags != testcases[n].out_flags) in main()
177 if (datalen != testcases[n].ucs2_len) in main()
181 if (testcases[n].ucs2[m] != data[m]) in main()
H A Dtest-ldap.c52 static const struct testcase testcases[] = { variable
75 for (i = 0; i < sizeof(testcases)/sizeof(testcases[0]); ++i) { in main()
76 const struct testcase *t = &testcases[i]; in main()
H A Dtest-utf8.c80 static const struct testcase testcases[] = { variable
122 for (i = 0; i < sizeof(testcases)/sizeof(testcases[0]); ++i) { in main()
123 const struct testcase *t = &testcases[i]; in main()
/freebsd-12.1/contrib/netbsd-tests/lib/libc/string/
H A Dt_bm.c54 const t_testcase testcases[] = { variable
79 for (ts = 0; ts < sizeof(testcases)/sizeof(t_testcase); ts++) { in ATF_TC_BODY()
80 ATF_CHECK(pattern = bm_comp((const u_char *)testcases[ts].pattern, in ATF_TC_BODY()
81 strlen(testcases[ts].pattern), (const u_char *)testcases[ts].freq)); in ATF_TC_BODY()
83 ATF_REQUIRE(text = strdup(testcases[ts].text)); in ATF_TC_BODY()
86 if (testcases[ts].match == -1) in ATF_TC_BODY()
89 ATF_CHECK_EQ(testcases[ts].match, in ATF_TC_BODY()
/freebsd-12.1/contrib/ntp/lib/isc/tests/
H A Dhash_test.c105 hash_testcase_t testcases[] = { in ATF_TC_BODY() local
234 hash_testcase_t testcases[] = { in ATF_TC_BODY() local
367 hash_testcase_t testcases[] = { in ATF_TC_BODY() local
499 hash_testcase_t testcases[] = { in ATF_TC_BODY() local
645 hash_testcase_t testcases[] = { in ATF_TC_BODY() local
792 hash_testcase_t testcases[] = { in ATF_TC_BODY() local
864 hash_testcase_t testcases[] = { in ATF_TC_BODY() local
995 hash_testcase_t testcases[] = { in ATF_TC_BODY() local
1158 hash_testcase_t testcases[] = { in ATF_TC_BODY() local
1321 hash_testcase_t testcases[] = { in ATF_TC_BODY() local
[all …]
/freebsd-12.1/contrib/netbsd-tests/lib/libc/gen/
H A Dt_floatunditf.c37 } testcases[] = { variable
127 for (i = 0; i < __arraycount(testcases); ++i) in ATF_TC_BODY()
129 testcases[i].ld == (long double)testcases[i].u64, in ATF_TC_BODY()
131 testcases[i].ld, in ATF_TC_BODY()
132 (long double)testcases[i].u64); in ATF_TC_BODY()
/freebsd-12.1/contrib/netbsd-tests/lib/libc/stdio/
H A Dt_fmemopen.c73 } testcases[] = { variable
420 for (t = &testcases[0]; t->s != NULL; ++t) { in ATF_TC_BODY()
471 for (t = &testcases[0]; t->s != NULL; ++t) { in ATF_TC_BODY()
520 for (t = &testcases[0]; t->s != NULL; ++t) { in ATF_TC_BODY()
581 for (t = &testcases[0]; t->s != NULL; ++t) { in ATF_TC_BODY()
642 for (t = &testcases[0]; t->s != NULL; ++t) { in ATF_TC_BODY()
694 for (t = &testcases[0]; t->s != NULL; ++t) { in ATF_TC_BODY()
766 for (t = &testcases[0]; t->s != NULL; ++t) { in ATF_TC_BODY()
801 for (t = &testcases[0]; t->s != NULL; ++t) { in ATF_TC_BODY()
838 for (t = &testcases[0]; t->s != NULL; ++t) { in ATF_TC_BODY()
[all …]
/freebsd-12.1/lib/libarchive/tests/
H A Dfunctional_test.sh44testcases=$(${TESTER} -h 2>&1 | awk 'p != 0 && $1 ~ /^[0-9]+:/ { print $NF } /Available tests:/ { …
45 for testcase in ${testcases}; do
/freebsd-12.1/usr.bin/tar/tests/
H A Dfunctional_test.sh45testcases=$(${TESTER} -h 2>&1 | awk 'p != 0 && $1 ~ /^[0-9]+:/ { print $NF } /Available tests:/ { …
46 for testcase in ${testcases}; do
/freebsd-12.1/usr.bin/cpio/tests/
H A Dfunctional_test.sh50testcases=$(${TESTER} -h 2>&1 | awk 'p != 0 && $1 ~ /^[0-9]+:/ { print $NF } /Available tests:/ { …
51 for testcase in ${testcases}; do
/freebsd-12.1/usr.bin/bsdcat/tests/
H A Dfunctional_test.sh50testcases=$(${TESTER} -h 2>&1 | awk 'p != 0 && $1 ~ /^[0-9]+:/ { print $NF } /Available tests:/ { …
51 for testcase in ${testcases}; do
/freebsd-12.1/lib/libc/tests/gen/
H A Dfmtmsg_test.c54 } testcases[] = { variable
229 for (i = 0; i < nitems(testcases); i++) { in ATF_TC_BODY()
230 t = &testcases[i]; in ATF_TC_BODY()
H A Dtest-fnmatch.c58 for (i = 0; i < nitems(testcases); i++) { in write_sh_tests()
59 t = &testcases[i]; in write_sh_tests()
H A Dfnmatch_test.c81 for (i = 0; i < nitems(testcases); i++) { in ATF_TC_BODY()
82 t = &testcases[i]; in ATF_TC_BODY()
H A Dfnmatch_testcases.h37 } testcases[] = { variable
/freebsd-12.1/lib/libc/tests/sys/
H A Dsendfile_test.c535 } testcases[] = { in flags_test() local
582 for (i = 0; i < nitems(testcases); i++) { in flags_test()
601 SF_FLAGS(testcases[i].readahead_pages, testcases[i].flags)); in flags_test()
643 } testcases[] = { in hdtr_positive_test() local
676 for (i = 0; i < nitems(testcases); i++) { in hdtr_positive_test()
680 if (testcases[i].include_headers) { in hdtr_positive_test()
688 if (testcases[i].include_trailers) { in hdtr_positive_test()
701 testcases[i].include_headers ? (char *)headers[0].iov_base : "", in hdtr_positive_test()
703 testcases[i].include_trailers ? (char *)trailers[0].iov_base : ""); in hdtr_positive_test()
/freebsd-12.1/contrib/pjdfstest/
H A DREADME44 - You must be root when running these testcases.
/freebsd-12.1/contrib/gcclibs/libiberty/
H A DChangeLog.gcc4352 * testsuite/demangle-expected: Add testcases for overrunning
/freebsd-12.1/contrib/gdb/gdb/
H A DTODO268 There are never to many testcases.
/freebsd-12.1/contrib/byacc/package/debian/
H A Dchangelog124 * add testcases, improve documentation for "-s" option.
/freebsd-12.1/contrib/gcclibs/libmudflap/
H A DChangeLog1525 * test/pass[13..17]-frag.c: New testcases.
1526 * test/fail[13..17]-frag.c: New testcases.
1540 * test/passNN-frag.c: New testcases.
1541 * test/failNN-frag.c: New testcases.
/freebsd-12.1/contrib/binutils/binutils/
H A DREADME189 please put large testcases somewhere on an ftp or web site so that only
/freebsd-12.1/contrib/gcc/doc/
H A Dsourcebuild.texi835 In general, C testcases have a trailing @file{-@var{n}.c}, starting
836 with @file{-1.c}, in case other testcases with similar names are added
905 All testcases must be portable. Target-specific testcases must have
/freebsd-12.1/contrib/libstdc++/
H A DChangeLog-200194 * testsuite/21_strings/insert.cc (test02): New testcases.
2498 * testsuite/23_containers/vector_ctor.cc (test03): New testcases.
2499 * testsuite/23_containers/vector_modifiers.cc (test03): New testcases.
3826 * testsuite/*/*.cc: Remove spaces, make sure testcases return zero.
5289 dejagnu/dg.exp. Adapt to log options used to run testcases.
5726 in testcases. Prepare for the DejaGnu based framework.
5819 * testsuite/17_intro: Prepare testcases for new style DejaGnu
5891 * testsuite/27_io/streambuf.cc (test04): Add testcases.
/freebsd-12.1/crypto/heimdal/
H A DChangeLog.2002225 * lib/krb5/name-45-test.c: add testcases for

12