/usr/share/doc/perl-Test-Simple/t/Legacy
NameSizeModeActions
Bugs/-0755rm
Builder/-0755rm
Regression/-0755rm
Simple/-0755rm
subtest/-0755rm
Test2/-0755rm
Tester/-0755rm
00test_harness_check.t7640644editdlrm
01-basic.t900644editdlrm
478-cmp_ok_hash.t9230644editdlrm
auto.t5980644editdlrm
bad_plan.t4950644editdlrm
bail_out.t8510644editdlrm
BEGIN_require_ok.t4630644editdlrm
BEGIN_use_ok.t3880644editdlrm
buffer.t4440644editdlrm
capture.t4880644editdlrm
check_tests.t24370644editdlrm
circular_data.t12000644editdlrm
cmp_ok.t17940644editdlrm
c_flag.t4580644editdlrm
depth.t3830644editdlrm
diag.t14240644editdlrm
died.t8890644editdlrm
dont_overwrite_die_handler.t5150644editdlrm
eq_set.t5620644editdlrm
exit.t32420644editdlrm
explain.t5820644editdlrm
explain_err_vars.t1220644editdlrm
extra.t11380644editdlrm
extra_one.t9100644editdlrm
fail-like.t15950644editdlrm
fail-more.t108040644editdlrm
fail.t12460644editdlrm
fail_one.t8730644editdlrm
filehandles.t2900644editdlrm
fork.t4560644editdlrm
harness_active.t14610644editdlrm
import.t2440644editdlrm
is_deeply_dne_bug.t8870644editdlrm
is_deeply_fail.t117920644editdlrm
is_deeply_with_threads.t14010644editdlrm
missing.t11010644editdlrm
More.t52180644editdlrm
new_ok.t7050644editdlrm
note.t4160644editdlrm
no_log_results.t2600644editdlrm
no_plan.t8400644editdlrm
no_tests.t8230644editdlrm
overload.t21810644editdlrm
overload_threads.t11780644editdlrm
plan.t4740644editdlrm
plan_bad.t10720644editdlrm
plan_is_noplan.t4040644editdlrm
plan_no_plan.t7940644editdlrm
plan_shouldnt_import.t2940644editdlrm
plan_skip_all.t1900644editdlrm
require_ok.t7860644editdlrm
run_test.t42310644editdlrm
simple.t2000644editdlrm
skip.t19650644editdlrm
skipall.t4810644editdlrm
strays.t4800644editdlrm
tbm_doesnt_set_exported_to.t4570644editdlrm
threads.t6160644editdlrm
thread_taint.t1220644editdlrm
todo.t33600644editdlrm
undef.t20010644editdlrm
useing.t3650644editdlrm
use_ok.t23450644editdlrm
utf8.t15230644editdlrm
versions.t5030644editdlrm
Edit: /usr/share/doc/perl-Test-Simple/t/Legacy/exit.t (3242B)
#!/usr/bin/perl -w # HARNESS-NO-STREAM # Can't use Test.pm, that's a 5.005 thing. package My::Test; BEGIN { if( $ENV{PERL_CORE} ) { chdir 't'; @INC = '../lib'; } } require Test::Builder; my $TB = Test::Builder->create(); $TB->level(0); package main; use Cwd; use File::Spec; my $Orig_Dir = cwd; my $Perl = File::Spec->rel2abs($^X); if( $^O eq 'VMS' ) { # VMS can't use its own $^X in a system call until almost 5.8 $Perl = "MCR $^X" if $] < 5.007003; # Quiet noisy 'SYS$ABORT' $Perl .= q{ -"I../lib"} if $ENV{PERL_CORE}; $Perl .= q{ -"Mvmsish=hushed"}; } else { $Perl = qq("$Perl"); # protect from shell if spaces } eval { require POSIX; &POSIX::WEXITSTATUS(0) }; if( $@ ) { *exitstatus = sub { $_[0] >> 8 }; } else { *exitstatus = sub { POSIX::WEXITSTATUS($_[0]) } } # Some OS' will alter the exit code to their own native sense... # sometimes. Rather than deal with the exception we'll just # build up the mapping. print "# Building up a map of exit codes. May take a while.\n"; my %Exit_Map; open my $fh, ">", "exit_map_test" or die $!; print $fh <<'DONE'; if ($^O eq 'VMS') { require vmsish; import vmsish qw(hushed); } my $exit = shift; print "exit $exit\n"; END { $? = $exit }; DONE close $fh; END { 1 while unlink "exit_map_test" } for my $exit (0..255) { # This correctly emulates Test::Builder's behavior. my $out = qx[$Perl exit_map_test $exit]; $TB->like( $out, qr/^exit $exit\n/, "exit map test for $exit" ); $Exit_Map{$exit} = exitstatus($?); } print "# Done.\n"; my %Tests = ( # File Exit Code 'success.plx' => 0, 'one_fail.plx' => 1, 'two_fail.plx' => 2, 'five_fail.plx' => 5, 'extras.plx' => 2, 'too_few.plx' => 255, 'too_few_fail.plx' => 2, 'death.plx' => 255, 'last_minute_death.plx' => 255, 'pre_plan_death.plx' => 'not zero', 'death_in_eval.plx' => 0, 'require.plx' => 0, 'death_with_handler.plx' => 255, 'exit.plx' => 1, 'one_fail_without_plan.plx' => 1, 'missing_done_testing.plx' => 254, ); chdir 't'; my $lib = File::Spec->catdir(qw(lib Test Simple sample_tests)); while( my($test_name, $exit_code) = each %Tests ) { my $file = File::Spec->catfile($lib, $test_name); my $wait_stat = system(qq{$Perl -"I../blib/lib" -"I../lib" -"I../t/lib" $file}); my $actual_exit = exitstatus($wait_stat); if( $exit_code eq 'not zero' ) { $TB->isnt_num( $actual_exit, $Exit_Map{0}, "$test_name exited with $actual_exit ". "(expected non-zero)"); } else { $TB->is_num( $actual_exit, $Exit_Map{$exit_code}, "$test_name exited with $actual_exit ". "(expected $Exit_Map{$exit_code})"); } } $TB->done_testing( scalar keys(%Tests) + 256 ); # So any END block file cleanup works. chdir $Orig_Dir;