/netbsd-src/external/mit/libuv/dist/ |
H A D | Makefile.am | 122 EXTRA_DIST = test/fixtures/empty_file \ 123 test/fixtures/load_error.node \ 124 test/fixtures/lorem_ipsum.txt \ 134 TESTS = test/run-tests 135 check_PROGRAMS = test/run-tests 145 test_run_tests_SOURCES = test/blackhole-server.c \ 146 test/echo-server.c \ 147 test/run-tests.c \ 148 test/runner.c \ 149 test/runner.h \ [all …]
|
H A D | CMakeLists.txt | 5 cmake_policy(SET CMP0064 NEW) # Support if (TEST) operator 171 list(APPEND uv_test_sources src/win/snprintf.c test/runner-win.c) 199 list(APPEND uv_test_sources test/runner-unix.c) 432 test/benchmark-async-pummel.c 433 test/benchmark-async.c 434 test/benchmark-fs-stat.c 435 test/benchmark-getaddrinfo.c 436 test/benchmark-loop-count.c 437 test/benchmark-queue-work.c 438 test/benchmark-million-async.c [all …]
|
/netbsd-src/external/bsd/libevent/dist/test/ |
H A D | include.am | 1 # test/Makefile.am for libevent 10 test/check-dumpevents.py \ 11 test/regress.gen.c \ 12 test/regress.gen.h \ 13 test/regress.rpc \ 14 test/rpcgen_wrapper.sh \ 15 test/print-winsock-errors.c \ 16 test/test.sh 19 test/bench \ 20 test/bench_cascade \ [all …]
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/test/ossl_shim/ |
H A D | ossl_config.json | 5 "FragmentAlert-DTLS":"Test failure - reason unknown", 6 "FragmentedClientVersion":"Test failure - reason unknown", 7 "MTU":"Test failure - reason unknown", 8 "EmptyCertificateList":"Test failure - reason unknown", 9 "AppDataBeforeHandshake-DTLS":"Test failure - reason unknown", 10 "AlertAfterChangeCipherSpec":"Test failure - reason unknown", 11 "AppDataAfterChangeCipherSpec":"Test failure - reason unknown", 12 "AppDataAfterChangeCipherSpec-Empty":"Test failure - reason unknown", 13 "AppDataAfterChangeCipherSpec-DTLS":"Test failure - reason unknown", 14 "AppDataBeforeHandshake-DTLS-Empty":"Test failure - reason unknown", [all …]
|
/netbsd-src/external/gpl3/gdb/dist/libctf/testsuite/libctf-lookup/ |
H A D | enum-many.lk | 6 iter test: IE_0 has value -10 7 iter test: IE_1 has value -9 8 iter test: IE_2 has value -8 9 iter test: IE_3 has value -7 10 iter test: IE_4 has value -6 11 iter test: IE_5 has value -5 12 iter test: IE_6 has value -4 13 iter test: IE_7 has value -3 14 iter test: IE_8 has value -2 15 iter test: IE_9 has value -1 [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/test/ |
H A D | test_test.c | 22 #define TEST(expected, test) test_case((expected), #test, (test)) argument 24 static int test_case(int expected, const char *test, int result) in test_case() argument 27 fprintf(stderr, "# FATAL: %s != %d\n", test, expected); in test_case() 35 if (!TEST(1, TEST_int_eq(1, 1)) in test_int() 36 || !TEST(0, TEST_int_eq(1, -1)) in test_int() 37 || !TEST(1, TEST_int_ne(1, 2)) in test_int() 38 || !TEST(0, TEST_int_ne(3, 3)) in test_int() 39 || !TEST(1, TEST_int_lt(4, 9)) in test_int() 40 || !TEST(0, TEST_int_lt(9, 4)) in test_int() 41 || !TEST(1, TEST_int_le(4, 9)) in test_int() [all …]
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/test/ |
H A D | test_test.c | 22 #define TEST(expected, test) test_case((expected), #test, (test)) argument 24 static int test_case(int expected, const char *test, int result) in test_case() argument 27 fprintf(stderr, "# FATAL: %s != %d\n", test, expected); in test_case() 35 if (!TEST(1, TEST_int_eq(1, 1)) in test_int() 36 || !TEST(0, TEST_int_eq(1, -1)) in test_int() 37 || !TEST(1, TEST_int_ne(1, 2)) in test_int() 38 || !TEST(0, TEST_int_ne(3, 3)) in test_int() 39 || !TEST(1, TEST_int_lt(4, 9)) in test_int() 40 || !TEST(0, TEST_int_lt(9, 4)) in test_int() 41 || !TEST(1, TEST_int_le(4, 9)) in test_int() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/utils/ABITest/ |
H A D | Makefile.test.common | 3 # Usage: make test.N.report 30 .PHONY: test.%.report 31 test.%.report: temps/test.%.xx.diff temps/test.%.xy.diff temps/test.%.yx.diff temps/test.%.yy.diff 35 echo "TEST $*: $$t failed"; \ 46 .PHONY: test.%.defs-report 47 test.%.defs-report: temps/test.%.defs.diff 50 echo "TEST $*: $$t failed"; \ 55 .PHONY: test.%.build 56 test.%.build: temps/test.%.ref temps/test.%.xx temps/test.%.xy temps/test.%.yx temps/test.%.yy temp… 65 .PRECIOUS: temps/test.%.xx.diff [all …]
|
/netbsd-src/tests/lib/lua/libm/ |
H A D | h_lualibm.c | 4 #define TEST(M_) printf("%-24s%+2.13f\n", #M_, M_) macro 10 TEST(M_E); in main() 11 TEST(M_LOG2E); in main() 12 TEST(M_LOG10E); in main() 13 TEST(M_LN2); in main() 14 TEST(M_LN10); in main() 15 TEST(M_PI); in main() 16 TEST(M_PI_2); in main() 17 TEST(M_PI_4); in main() 18 TEST(M_1_PI); in main() [all …]
|
H A D | lualibm.lua | 8 local function test(s, x) function 16 test("M_E", lm.M_E); 17 test("M_LOG2E", lm.M_LOG2E) 18 test("M_LOG10E", lm.M_LOG10E) 19 test("M_LN2", lm.M_LN2) 20 test("M_LN10", lm.M_LN10) 21 test("M_PI", lm.M_PI) 22 test("M_PI_2", lm.M_PI_2) 23 test("M_PI_4", lm.M_PI_4) 24 test("M_1_PI", lm.M_1_PI) [all …]
|
/netbsd-src/tests/lib/libbluetooth/ |
H A D | t_sdp_put.c | 43 atf_tc_set_md_var(tc, "descr", "Test sdp_put_data results"); in ATF_TC_HEAD() 49 sdp_data_t test = { buf, buf + sizeof(buf) }; in ATF_TC_BODY() local 57 ATF_REQUIRE(sdp_put_data(&test, &value)); in ATF_TC_BODY() 58 test.end = test.next; in ATF_TC_BODY() 59 test.next = buf; in ATF_TC_BODY() 67 ATF_REQUIRE_EQ(test.end - test.next, sizeof(expect)); in ATF_TC_BODY() 68 ATF_CHECK(memcmp(expect, test.next, sizeof(expect)) == 0); in ATF_TC_BODY() 76 atf_tc_set_md_var(tc, "descr", "Test sdp_put_attr results"); in ATF_TC_HEAD() 82 sdp_data_t test = { buf, buf + sizeof(buf) }; in ATF_TC_BODY() local 89 ATF_REQUIRE_EQ(sdp_put_attr(&test, 0xabcd, &value), false); in ATF_TC_BODY() [all …]
|
/netbsd-src/external/gpl2/dtc/dist/tests/ |
H A D | run_tests.sh | 152 $CC -shared -o $1.test.so data.S $1.test.s 198 # Test to exercise libfdt overlay application without dtc's overlay support 200 # First test a doctored overlay which requires only local fixups 201 run_dtc_test -I dts -O dtb -o overlay_base_no_symbols.test.dtb overlay_base.dts 202 run_test check_path overlay_base_no_symbols.test.dtb not-exists "/__symbols__" 203 run_test check_path overlay_base_no_symbols.test.dtb not-exists "/__fixups__" 204 run_test check_path overlay_base_no_symbols.test.dtb not-exists "/__local_fixups__" 206 run_dtc_test -I dts -O dtb -o overlay_overlay_no_fixups.test.dtb overlay_overlay_no_fixups.dts 207 run_test check_path overlay_overlay_no_fixups.test.dtb not-exists "/__symbols__" 208 run_test check_path overlay_overlay_no_fixups.test.dtb not-exists "/__fixups__" [all …]
|
/netbsd-src/external/bsd/libevent/dist/ |
H A D | Makefile.in | 35 # test/Makefile.am for libevent 57 if test -z '$(MAKELEVEL)'; then \ 59 elif test -n '$(MAKE_HOST)'; then \ 61 elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ 92 test $$skip_next = yes && { skip_next=no; continue; }; \ 108 test $$has_opt = yes 145 @BUILD_REGRESS_TRUE@am__append_12 = test/regress 146 @BUILD_REGRESS_TRUE@am__append_13 = test/regress.gen.c test/regress.gen.h 148 @BUILD_WIN32_TRUE@am__append_15 = test/regress_iocp.c 149 @OPENSSL_TRUE@am__append_16 = test/regress_ssl.c [all …]
|
/netbsd-src/external/gpl3/gdb/dist/sim/testsuite/m32r/ |
H A D | ChangeLog-2021 | 43 * rte.cgs: Test bbpc,bbpsw. 44 * trap.cgs: Test bbpc,bbpsw. 52 * addx.cgs: Add another test. 53 * jmp.cgs: Add another test. 57 * trap.cgs: Test trap 2. 61 * addx.cgs: Test (-1)+(-1)+1. 70 * unlock.cgs: Fixed test. 71 * mvfc.cgs: Fixed test. 72 * remu.cgs: Fixed test. 73 * bnc24.cgs: Test long BNC instruction. [all …]
|
/netbsd-src/lib/libedit/TEST/ |
H A D | test_filecompletion.c | 54 /* simple test for escaping angular brackets */ 57 {"ang<ular>test", NULL}, 58 L"ls ang\\<ular\\>test " 61 /* test angular bracket inside double quotes: ls "dq_ang */ 64 {"dq_ang<ular>test", NULL}, 65 L"ls \"dq_ang<ular>test\"" 68 /* test angular bracket inside singlq quotes: ls "sq_ang */ 71 {"sq_ang<ular>test", NULL}, 72 L"ls 'sq_ang<ular>test'" 75 /* simple test for backslash */ [all …]
|
/netbsd-src/external/ibm-public/postfix/dist/src/util/ |
H A D | mystrtok.ref | 1 unknown: RUN test case 0 mystrtok >< 2 unknown: PASS test 0 3 unknown: RUN test case 1 mystrtok > foo < 4 unknown: PASS test 1 5 unknown: RUN test case 2 mystrtok > foo bar < 6 unknown: PASS test 2 7 unknown: RUN test case 3 mystrtokq >< 8 unknown: PASS test 3 9 unknown: RUN test case 4 mystrtokq >foo bar< 10 unknown: PASS test 4 [all …]
|
/netbsd-src/external/bsd/kyua-testers/dist/ |
H A D | kyua-atf-interface.7 | 33 .Nd Description of the ATF test program interface 35 The interface of ATF test programs is the interface of the test 43 The ATF interface can be understood as the mechanisms used by test programs 44 to communicate with the runtime engine as well as the assumptions that test 45 programs and test cases can make while running. 47 A test case is the most basic part of a test suite. A test case is 49 item under test was a function, the test case would provide a single set of 51 test was a binary, the test case would provide a single set of arguments to 53 .Ss Test case parts 54 Test cases have three parts: [all …]
|
/netbsd-src/external/mpl/bind/dist/tests/dns/testdata/dbiterator/ |
H A D | zone2.data | 3 test. 600 IN SOA localhost. postmaster.localhost. ( 11 20110815225156 39833 test. 17 600 NS ns.test. 18 600 NS ns2.test. 20 20110815225156 39833 test. 46 20110815225156 39833 test. 53 20110815225156 57183 test. 66 20110815225156 39833 test. 72 a.test. 600 IN TXT "test" 74 20110815225156 39833 test. [all …]
|
/netbsd-src/external/bsd/tre/dist/tests/agrep/ |
H A D | exitstatus.ok | 1 #### TEST: agrep this-will-be-found exitstatus.in 5 #### TEST: agrep this-will-be-found < exitstatus.in 9 #### TEST: agrep -c this-will-be-found exitstatus.in 13 #### TEST: agrep -c this-will-be-found < exitstatus.in 17 #### TEST: agrep -H this-will-be-found exitstatus.in 21 #### TEST: agrep -H this-will-be-found < exitstatus.in 25 #### TEST: agrep -l this-will-be-found exitstatus.in 29 #### TEST: agrep -l this-will-be-found < exitstatus.in 33 #### TEST: agrep -n this-will-be-found exitstatus.in 37 #### TEST: agrep -n this-will-be-found < exitstatus.in [all …]
|
H A D | delimiters.ok | 1 #### TEST: agrep ^foobar$ delimiters.in 5 #### TEST: agrep ^foobar$ < delimiters.in 9 #### TEST: agrep -c ^foobar$ delimiters.in 13 #### TEST: agrep -c ^foobar$ < delimiters.in 17 #### TEST: agrep -H ^foobar$ delimiters.in 21 #### TEST: agrep -H ^foobar$ < delimiters.in 25 #### TEST: agrep -l ^foobar$ delimiters.in 29 #### TEST: agrep -l ^foobar$ < delimiters.in 33 #### TEST: agrep -n ^foobar$ delimiters.in 37 #### TEST: agrep -n ^foobar$ < delimiters.in [all …]
|
/netbsd-src/external/bsd/atf/dist/doc/ |
H A D | atf-test-case.4 | 33 .Nm atf-test-case 34 .Nd generic description of test cases 37 .Em test case 42 Given this, test cases are very fine-grained, but they attempt to group 45 A test case is defined by three components regardless of the language it is 50 properties to describe what the test case does and how it behaves. 51 In other words: it defines the test case's 58 is the test case itself. 59 It executes all actions needed to reproduce the test, and checks for 66 the exit status of the test case. [all …]
|
/netbsd-src/external/bsd/atf/dist/atf-c/ |
H A D | h_build.h | 37 * Test case data. 56 "test.c", 57 "test.o", 63 "cc", "-o", "test.o", "-c", "test.c", NULL 72 "test.c", 73 "test.o", 79 "cc", "-foo", "-o", "test.o", "-c", "test.c", NULL 88 "test.c", 89 "test.o", 95 "cc", "-f1", "-f2", "-f3", "-f4-f5", "-o", "test.o", [all …]
|
/netbsd-src/external/bsd/unbound/dist/testdata/ede.tdir/bogus/ |
H A D | dnssec-failures.test.signed | 1 dnssec-failures.test. 3600 IN SOA ns.dnssec-failures.test. hostmaster.dnssec-failures.test. 1 14400… 2 dnssec-failures.test. 3600 IN RRSIG SOA 13 2 3600 20010201000000 20001230000000 53876 dnssec-failur… 3 dnssec-failures.test. 3600 IN NS ns.dnssec-failures.test. 4 dnssec-failures.test. 3600 IN RRSIG NS 13 2 3600 20010201000000 20001230000000 53876 dnssec-failure… 5 dnssec-failures.test. 3600 IN DNSKEY 257 3 13 mx6xe39HZrYCpyC+9YmquHIf1WdWYaDqOfcpXg2Gtv5VJGS/WSO14… 6 dnssec-failures.test. 3600 IN RRSIG DNSKEY 13 2 3600 20010201000000 20001230000000 53876 dnssec-fai… 7 dnssec-failures.test. 300 IN NSEC expired.dnssec-failures.test. NS SOA RRSIG NSEC DNSKEY 8 dnssec-failures.test. 300 IN RRSIG NSEC 13 2 300 20010201000000 20001230000000 53876 dnssec-failure… 9 expired.dnssec-failures.test. 300 IN RRSIG NSEC 13 3 300 20010201000000 20001230000000 53876 dnssec… 10 missingrrsigs.dnssec-failures.test. 3600 IN TXT "Signatures missing" [all …]
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/fuzz/ |
H A D | build.info | 68 …PROGRAMS_NO_INST=asn1-test asn1parse-test bignum-test bndiv-test client-test conf-test crl-test se… 71 PROGRAMS_NO_INST=cms-test 75 PROGRAMS_NO_INST=ct-test 78 SOURCE[asn1-test]=asn1.c test-corpus.c 79 INCLUDE[asn1-test]=../include 80 DEPEND[asn1-test]=../libcrypto ../libssl 82 SOURCE[asn1parse-test]=asn1parse.c test-corpus.c 83 INCLUDE[asn1parse-test]=../include 84 DEPEND[asn1parse-test]=../libcrypto 86 SOURCE[bignum-test]=bignum.c test-corpus.c [all …]
|
/netbsd-src/external/ibm-public/postfix/dist/src/global/ |
H A D | login_sender_match.ref | 1 unknown: RUN test case 0 wildcard works 2 unknown: PASS test 0 3 unknown: RUN test case 1 unknown user 4 unknown: PASS test 1 5 unknown: RUN test case 2 bare user 6 unknown: PASS test 2 7 unknown: RUN test case 3 user@domain 8 unknown: PASS test 3 9 unknown: RUN test case 4 user+ext@domain 10 unknown: PASS test 4 [all …]
|