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 D | predicate.t | 43 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 D | line_numbers.t | 29 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 D | todo.t | 53 test_out( map { my $x = $_; $x =~ s/\s+$//g; $x }
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/Tester/ |
| H A D | tbt_01basic.t | 8 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 D | tbt_07args.t | 107 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 D | tbt_05faildiag.t | 8 test_out("not ok 1 - one"); 12 test_out("not ok 2 - two"); 20 test_out("not ok 1 - one");
|
| H A D | tbt_06errormess.t | 107 test_out("ok 1 - foo"); 114 test_out("not ok 1 - foo");
|
| H A D | tbt_09do_script.pl | 8 test_out("not ok 1 - one");
|
| H A D | tbt_08subtest.t | 13 test_out("not ok 1 - foo");
|
| H A D | tbt_02fhrestore.t | 29 test_out("ok 1 - tested");
|
| /openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/ |
| H A D | basic.t | 149 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 D | recurs.t | 140 my $test_out = run("$make test");
|
| /openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-PL2Bat/t/ |
| H A D | make_executable.t | 87 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 D | Functions.t | 47 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 D | XS.pm | 468 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 D | 20030627-1.c | 16 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 D | googletest.py | 193 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 D | 662-tbt-no-plan.t | 23 test_out('ok 1 - use Example::Tester;');
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/Builder/ |
| H A D | Tester.pm | 20 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...] |