Home
last modified time | relevance | path

Searched refs:testcount (Results 1 – 7 of 7) sorted by relevance

/src/contrib/unbound/testcode/
H A Dunitmain.h46 extern int testcount;
49 #define unit_assert(x) do {testcount++; log_assert(x);} while(0)
51 #define unit_assert(x) do {testcount++; if(!(x)) { fprintf(stderr, "assertion failure %s:%d\n", __F…
H A Dunitmain.c70 int testcount = 0; variable
1369 printf("%d checks ok.\n", testcount); in main()
/src/crypto/openssl/test/recipes/
H A D30-test_evp_fetch_prov.t94 my $testcount = 0;
96 $testcount += scalar @{$_->{tests}};
99 plan tests => 1 + $testcount * scalar(@types);
H A D01-test_symbol_presence.t52 my $testcount
55 $testcount
59 plan tests => $testcount;
H A D80-test_ssl_old.t549 my $testcount = scalar(@protocols) + $protocolciphersuitecount
551 $testcount-- unless $no_tls1_3;
552 plan tests => $testcount;
/src/crypto/openssl/test/
H A Dalgorithmid_test.c280 int n, x509 = 0, spki = 0, testcount = 0; in setup_tests() local
299 testcount = x509 + spki; in setup_tests()
301 if (testcount < 1) in setup_tests()
303 else if (testcount > 1) in setup_tests()
305 if (testcount != 1) in setup_tests()
/src/contrib/expat/tests/
H A Dbasic_tests.c6168 const int testcount = sizeof(testcases) / sizeof(testcases[0]); in START_TEST() local
6169 for (int test_i = 0; test_i < testcount; test_i++) { in START_TEST()