Fix the new exit() tests, by Gisle Aas :
[p5sagit/p5-mst-13.2.git] / t / run / exit.t
1 #!./perl
2 #
3 # Tests for perl exit codes, playing with $?, etc...
4
5
6 BEGIN {
7     chdir 't' if -d 't';
8     @INC = qw(. ../lib);
9 }
10
11 # VMS and Windows need -e "...", most everything else works better with '
12 my $quote = $^O =~ /^(VMS|MSWin\d+)$/ ? q{"} : q{'};
13
14 # Run some code, return its wait status.
15 sub run {
16     my($code) = shift;
17     return system($^X, "-e", $code);
18 }
19
20 BEGIN {
21     # MacOS system() doesn't have good return value
22     $numtests = ($^O eq 'VMS') ? 9 : ($^O eq 'MacOS') ? 0 : 17;
23 }
24
25 require "test.pl";
26 plan(tests => $numtests);
27
28 if ($^O ne 'MacOS') {
29 my $exit, $exit_arg;
30
31 $exit = run('exit');
32 is( $exit >> 8, 0,              'Normal exit' );
33 is( $exit, $?,                  'Normal exit $?' );
34 is( ${^CHILD_ERROR_NATIVE}, 0,  'Normal exit ${^CHILD_ERROR_NATIVE}' );
35
36 if ($^O ne 'VMS') {
37   my $posix_ok = eval { require POSIX; };
38
39   $exit = run('exit 42');
40   is( $exit >> 8, 42,             'Non-zero exit' );
41   is( $exit, $?,                  'Non-zero exit $?' );
42   isnt( !${^CHILD_ERROR_NATIVE}, 0, 'Non-zero exit ${^CHILD_ERROR_NATIVE}' );
43  SKIP: {
44       skip("No POSIX", 3) unless $posix_ok;
45       ok(POSIX::WIFEXITED(${^CHILD_ERROR_NATIVE}), "WIFEXITED");
46       ok(!POSIX::WIFSIGNALED(${^CHILD_ERROR_NATIVE}), "WIFSIGNALED");
47       is(POSIX::WEXITSTATUS(${^CHILD_ERROR_NATIVE}), 42, "WEXITSTATUS");
48   }
49
50   $exit = run('kill 15, $$; sleep(1);');
51
52   is( $exit & 127, 15,            'Term by signal' );
53   ok( !($exit & 128),             'No core dump' );
54   is( $? & 127, 15,               'Term by signal $?' );
55   isnt( ${^CHILD_ERROR_NATIVE},  0, 'Term by signal ${^CHILD_ERROR_NATIVE}' );
56  SKIP: {
57       skip("No POSIX", 3) unless $posix_ok;
58       ok(!POSIX::WIFEXITED(${^CHILD_ERROR_NATIVE}), "WIFEXITED");
59       ok(POSIX::WIFSIGNALED(${^CHILD_ERROR_NATIVE}), "WIFSIGNALED");
60       is(POSIX::WTERMSIG(${^CHILD_ERROR_NATIVE}), 15, "WTERMSIG");
61   }
62
63 } else {
64
65 # On VMS, successful returns from system() are always 0, warnings are 1,
66 # errors are 2, and fatal errors are 4.
67
68   $exit = run("exit 196609"); # %CLI-S-NORMAL
69   is( $exit >> 8, 0,             'success exit' );
70
71   $exit = run("exit 196611");  # %CLI-I-NORMAL
72   is( $exit >> 8, 0,             'informational exit' );
73
74   $exit = run("exit 196608");  # %CLI-W-NORMAL
75   is( $exit >> 8, 1,             'warning exit' );
76
77   $exit = run("exit 196610");  # %CLI-E-NORMAL
78   is( $exit >> 8, 2,             'error exit' );
79
80   $exit = run("exit 196612");  # %CLI-F-NORMAL
81   is( $exit >> 8, 4,             'fatal error exit' );
82 }
83
84 $exit_arg = 42;
85 $exit = run("END { \$? = $exit_arg }");
86
87 # On VMS, in the child process the actual exit status will be SS$_ABORT, 
88 # which is what you get from any non-zero value of $? that has been 
89 # dePOSIXified by STATUS_UNIX_SET.  In the parent process, all we'll 
90 # see are the severity bits (0-2) shifted left by 8.
91 $exit_arg = (44 & 7) if $^O eq 'VMS';  
92
93 is( $exit >> 8, $exit_arg,             'Changing $? in END block' );
94 }