Home
last modified time | relevance | path

Searched refs:test_out (Results 1 – 19 of 19) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/subtest/
H A Dpredicate.t43 test_out("# Subtest: namehere");
44 test_out(" 1..2");
45 test_out(" ok 1 - foo");
46 test_out(" not ok 2 - bar");
50 test_out("not ok 1 - namehere");
68 test_out("# Subtest: namehere");
69 test_out(" 1..2");
70 test_out(" ok 1 - foo");
71 test_out(" not ok 2 - bar");
75 test_out("not ok 1 - namehere");
[all …]
H A Dline_numbers.t29 test_out("# Subtest: namehere");
30 test_out(" 1..3");
31 test_out(" ok 1");
32 test_out(" not ok 2");
34 test_out(" ok 3");
36 test_out("not ok 1 - namehere");
50 test_out("# Subtest: namehere");
51 test_out(" 1..3");
52 test_out(" ok 1 - first is good");
53 test_out(" not ok 2 - second is bad");
[all …]
H A Dtodo.t53 test_out( map { my $x = $_; $x =~ s/\s+$//g; $x }
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/Tester/
H A Dtbt_01basic.t8 test_out("ok 1 - tested");
12 test_out("ok 1 - tested");
18 test_out("ok 1 - one");
19 test_out("ok 2 - two");
24 test_out(qr/ok 1 - tested\n/);
28 test_out("not ok 1 - should fail");
36 test_out("not ok 1");
37 test_out("not ok 2");
44 test_out("not ok 1 - name");
45 test_out("not ok 2 - name");
[all …]
H A Dtbt_07args.t107 test_out("ok 1 - foo");
114 test_out("not ok 1 - foo");
129 test_out("ok 1 - foo");
147 test_out("ok 1 - foo");
165 test_out("ok 1 - foo");
183 test_out("not ok 1 - foo this is wrong");
202 test_out("not ok 1 - foo");
H A Dtbt_05faildiag.t8 test_out("not ok 1 - one");
12 test_out("not ok 2 - two");
20 test_out("not ok 1 - one");
H A Dtbt_06errormess.t107 test_out("ok 1 - foo");
114 test_out("not ok 1 - foo");
H A Dtbt_09do_script.pl8 test_out("not ok 1 - one");
H A Dtbt_08subtest.t13 test_out("not ok 1 - foo");
H A Dtbt_02fhrestore.t29 test_out("ok 1 - tested");
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/
H A Dbasic.t149 my $test_out = run("$make test");
150 like( $test_out, qr/All tests successful/, 'make test' );
152 diag $test_out;
156 $test_out = run("$make_test_verbose");
157 like( $test_out, qr/ok \d+ - TEST_VERBOSE/, 'TEST_VERBOSE' );
158 like( $test_out, qr/ok \d+ - testing test.pl/, 'test.pl' ); # in test.pl
159 like( $test_out, qr/ok \d+ - testing t\/\*.t/, 't/*.t' ); # in *.t
160 like( $test_out, qr/All tests successful/, ' successful' );
162 diag $test_out;
172 $test_out = run($make_testdb_file);
[all …]
H A Drecurs.t140 my $test_out = run("$make test");
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-PL2Bat/t/
H A Dmake_executable.t87 my $test_out = `$perl -e 1 2>&1`;
88 is $test_out, "", "perl execution with temp path works"
91 if !defined $test_out;
/openbsd-src/gnu/usr.bin/perl/ext/Pod-Functions/t/
H A DFunctions.t47 my $test_out = do { local $/; <DATA> };
55 is( $fake_out, $test_out, 'run as plain program' );
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup/
H A DXS.pm468 my $test_out = run($test_cmd);
469 is( $?, 0, "$test_cmd exited normally" ) || diag "$make_out\n$test_out";
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D20030627-1.c16 void test_out (char *bd, int xd, char *bs, int xs) in test_out() function
/openbsd-src/gnu/llvm/llvm/utils/lit/lit/formats/
H A Dgoogletest.py193 test_out = get_test_stdout(testname)
194 if test_out:
195 output += test_out + '\n\n'
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/regression/
H A D662-tbt-no-plan.t23 test_out('ok 1 - use Example::Tester;');
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/Builder/
H A DTester.pm20 test_out("not ok 1 - foo");
32 C<test_out> and C<test_err> in advance to declare what the testsuite you
60 our @EXPORT = qw(test_out test_err test_fail test_diag test_test line_num);
158 =item test_out
166 test_out("ok 1","ok 2");
170 test_out("ok 1\nok 2");
174 test_out("ok 1");
175 test_out("ok 2");
177 Once C<test_out> or C<test_err> (or C<test_fail> or C<test_diag>) have
186 sub test_out { subroutine
[all...]