Searched refs:tests (Results 301 - 325 of 1430) sorted by relevance

<<11121314151617181920>>

/openbsd-current/gnu/usr.bin/perl/t/mro/
H A Dnext_method.t6 require q(./test.pl); plan(tests => 5);
10 This tests the classic diamond inheritance pattern.
H A Dnext_method_utf8.t8 require q(./test.pl); plan(tests => 5);
12 This tests the classic diamond inheritance pattern.
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/
H A Dharness_active.t26 $TB->plan(tests => 4);
45 Test::More->import(tests => 4);
/openbsd-current/gnu/usr.bin/perl/t/re/
H A Dreg_60508.t14 plan tests => 1;
H A Dreg_pmod.t12 our @tests = (
22 plan tests => 14 * @tests + 4;
28 foreach my $test (@tests) {
/openbsd-current/gnu/usr.bin/perl/dist/Locale-Maketext/t/
H A D60_super.t4 use Test::More tests => 3;
/openbsd-current/gnu/usr.bin/perl/cpan/parent/t/
H A Dparent-returns-false.t11 use Test::More tests => 2;
/openbsd-current/regress/sys/uvm/vnode/
H A Dvnode.c43 } tests[] = { local
78 if (tests[i].t_name == NULL)
81 if (strcmp(tests[i].t_name, *argv))
84 return tests[i].t_func(&ctx);
/openbsd-current/gnu/usr.bin/perl/ext/Sys-Hostname/t/
H A DHostname.t13 use Test::More tests => 2;
/openbsd-current/regress/lib/libcrypto/asn1/
H A Dasn1_string_to_utf8.c32 static const struct asn1_string_to_utf8_test_case tests[] = { variable in typeref:struct:asn1_string_to_utf8_test_case
71 const size_t N_TESTS = sizeof(tests) / sizeof(tests[0]);
121 failed |= asn1_string_to_utf8_test(&tests[i]);
/openbsd-current/gnu/usr.bin/perl/cpan/Pod-Usage/t/pod/
H A Dselectsections.pl7 my @tests = (
17 -sections => $tests[$idx],
/openbsd-current/gnu/usr.bin/perl/dist/Data-Dumper/t/
H A Doverload.t8 use Test::More tests => 4;
H A Dbugs.t3 # regression tests for old bugs that do not fit other categories
8 use Test::More tests => 24;
100 my $tests = sub {
118 &$tests;
121 &$tests;
126 my $tests = sub {
134 &$tests;
137 &$tests;
/openbsd-current/gnu/usr.bin/perl/dist/encoding-warnings/t/
H A D1-warning.t23 plan tests => 3;
34 plan tests => 2;
/openbsd-current/regress/sys/kern/pledge/generic/
H A DMakefile13 ./${PROG} | diff -I OpenBSD -u ${.CURDIR}/tests.out -
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.eh/
H A Dcatchptr1.C227 static int (*tests[])() = variable
250 for (ix = 0; tests[ix]; ix++)
252 int n = tests[ix] ();
/openbsd-current/gnu/usr.bin/perl/t/lib/
H A Ddeprecate.t11 plan(tests => 10);
28 our %tests = (
39 for my $lib (sort keys %tests) {
51 if( $tests{$lib} ) {
66 for my $lib (sort keys %tests) {
78 if( $tests{$lib} ) {
/openbsd-current/regress/lib/libc/regex/
H A Dsplit.c215 } tests[] = { variable in typeref:struct:__anon8104
288 for (n = 0; tests[n].str != NULL; n++) {
289 (void) strlcpy(buf, tests[n].str, sizeof buf);
291 nf = split(buf, fields, RNF, tests[n].seps);
293 if (nf != tests[n].nf) {
295 tests[n].str, tests[n].seps, nf, tests[n].nf);
305 if (strcmp(f, tests[n].fi[i]) != 0) {
307 tests[
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/CPAN-Meta/t/lib/Parse/CPAN/Meta/
H A DTest.pm13 tests yaml_ok yaml_error slurp load_ok
22 # 22 tests per call to yaml_ok
23 # 4 tests per call to load_ok
24 sub tests { subroutine
25 return ( tests => count(@_) );
/openbsd-current/lib/libexpat/tests/
H A Dminicheck.c4 tests. This interface is based entirely on the portion of the
79 tc->next_tcase = suite->tests;
80 suite->tests = tc;
98 = (tcase_test_function *)realloc(tc->tests, new_size);
100 tc->tests = new_tests;
103 tc->tests[tc->ntests] = test;
113 free(tc->tests);
123 while (suite->tests != NULL) {
124 TCase *next = suite->tests->next_tcase;
125 tcase_free(suite->tests);
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Sys-Syslog/t/
H A Dsyslog-inet-udp.t33 my $tests;
34 plan tests => $tests;
37 BEGIN { eval "use Test::NoWarnings"; $tests = $@ ? 0 : 1; }
39 BEGIN { $tests += 1 }
44 BEGIN { $tests += 1 }
49 BEGIN { $tests += 4 }
68 BEGIN { $tests += 3 }
86 BEGIN { $tests += 8 }
131 BEGIN { $tests
[all...]
/openbsd-current/regress/lib/libm/msun/
H A Dconj_test.c51 static const double tests[] = { variable
72 static const int ntests = sizeof(tests) / sizeof(tests[0]) / 2;
78 __real__ expected = __real__ in = tests[2 * i];
79 __imag__ in = tests[2 * i + 1];
H A Dnearbyint_test.c34 * - adapt tests for rint(3)
35 * - tests for harder values (more mantissa bits than float)
60 } tests[] = { variable in typeref:struct:__anon4
84 out = tests[testindex].out[rmodeindex];
98 in = tests[testindex].in;
105 in = -tests[testindex].in;
127 in = tests[testindex].in;
128 ipart_expected = tests[testindex].out[1];
160 for (i = 0; i < nitems(tests); i++) {
/openbsd-current/gnu/usr.bin/perl/ext/re/t/
H A Dregop.t18 my @tests = grep { /\S/ } split /(?=Compiling REx)/, $out;
20 shift @tests
21 if $tests[0] =~ /EXECUTING.../;
23 plan( @tests + 2 + ( @strs - grep { !$_ or /^---/ } @strs ));
25 is( scalar @tests, $NUM_SECTS,
26 "Expecting output for $NUM_SECTS patterns, got ". scalar(@tests) );
31 foreach my $testout ( @tests ) {
55 # that the tests for this result set are finished.
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Harness/t/
H A Dglob-to-regexp.t10 my @tests;
14 push @tests, [ $glob, $pattern, $name ];
17 plan tests => scalar @tests;
19 for (@tests) {

Completed in 227 milliseconds

<<11121314151617181920>>