fix a cast warning in perly.c
[p5sagit/p5-mst-13.2.git] / t / run / exit.t
CommitLineData
14cf881c 1#!./perl
2#
3# Tests for perl exit codes, playing with $?, etc...
4
5
6BEGIN {
7 chdir 't' if -d 't';
69026470 8 @INC = qw(. ../lib);
14cf881c 9}
10
14cf881c 11# Run some code, return its wait status.
12sub run {
13 my($code) = shift;
6cd63c21 14 $code = "\"" . $code . "\"" if $^O eq 'VMS'; #VMS needs quotes for this.
755bf813 15 return system($^X, "-e", $code);
14cf881c 16}
17
0ab78052 18BEGIN {
dc459aad 19 # MacOS system() doesn't have good return value
7a7fd8e0 20 $numtests = ($^O eq 'VMS') ? 16 : ($^O eq 'MacOS') ? 0 : 17;
0ab78052 21}
14cf881c 22
69026470 23require "test.pl";
24plan(tests => $numtests);
55a9fe1d 25
6cd63c21 26my $native_success = 0;
27 $native_success = 1 if $^O eq 'VMS';
28
dc459aad 29if ($^O ne 'MacOS') {
55a9fe1d 30my $exit, $exit_arg;
14cf881c 31
32$exit = run('exit');
33is( $exit >> 8, 0, 'Normal exit' );
e5218da5 34is( $exit, $?, 'Normal exit $?' );
6cd63c21 35is( ${^CHILD_ERROR_NATIVE}, $native_success, 'Normal exit ${^CHILD_ERROR_NATIVE}' );
14cf881c 36
55a9fe1d 37if ($^O ne 'VMS') {
e5218da5 38 my $posix_ok = eval { require POSIX; };
5c5be41c 39 my $wait_macros_ok = defined &POSIX::WIFEXITED;
55a9fe1d 40
41 $exit = run('exit 42');
42 is( $exit >> 8, 42, 'Non-zero exit' );
e5218da5 43 is( $exit, $?, 'Non-zero exit $?' );
44 isnt( !${^CHILD_ERROR_NATIVE}, 0, 'Non-zero exit ${^CHILD_ERROR_NATIVE}' );
5c5be41c 45 SKIP: {
46 skip("No POSIX", 3) unless $posix_ok;
47 skip("No POSIX wait macros", 3) unless $wait_macros_ok;
48 ok(POSIX::WIFEXITED(${^CHILD_ERROR_NATIVE}), "WIFEXITED");
49 ok(!POSIX::WIFSIGNALED(${^CHILD_ERROR_NATIVE}), "WIFSIGNALED");
50 is(POSIX::WEXITSTATUS(${^CHILD_ERROR_NATIVE}), 42, "WEXITSTATUS");
e5218da5 51 }
52
5c5be41c 53 SKIP: {
54 skip("Skip signals and core dump tests on Win32", 7) if $^O eq 'MSWin32';
55
56 $exit = run('kill 15, $$; sleep(1);');
e5218da5 57
5c5be41c 58 is( $exit & 127, 15, 'Term by signal' );
59 ok( !($exit & 128), 'No core dump' );
60 is( $? & 127, 15, 'Term by signal $?' );
61 isnt( ${^CHILD_ERROR_NATIVE}, 0, 'Term by signal ${^CHILD_ERROR_NATIVE}' );
62 SKIP: {
e5218da5 63 skip("No POSIX", 3) unless $posix_ok;
5c5be41c 64 skip("No POSIX wait macros", 3) unless $wait_macros_ok;
e5218da5 65 ok(!POSIX::WIFEXITED(${^CHILD_ERROR_NATIVE}), "WIFEXITED");
66 ok(POSIX::WIFSIGNALED(${^CHILD_ERROR_NATIVE}), "WIFSIGNALED");
67 is(POSIX::WTERMSIG(${^CHILD_ERROR_NATIVE}), 15, "WTERMSIG");
5c5be41c 68 }
e5218da5 69 }
55a9fe1d 70
71} else {
72
6cd63c21 73# On VMS, successful returns from system() are reported 0, VMS errors that
74# can not be translated to UNIX are reported as EVMSERR, which has a value
75# of 65535. Codes from 2 through 7 are assumed to be from non-compliant
76# VMS systems and passed through. Programs written to use _POSIX_EXIT()
77# codes like GNV will pass the numbers 2 through 255 encoded in the
78# C facility by multiplying the number by 8 and adding %x35A000 to it.
79# Perl will decode that number from children back to it's internal status.
80#
81# For native VMS status codes, success codes are odd numbered, error codes
82# are even numbered. The 3 LSBs of the code indicate if the success is
83# an informational message or the severity of the failure.
84#
85# Because the failure codes for the tests of the CLI facility status codes can
86# not be translated to UNIX error codes, they will be reported as EVMSERR,
87# even though Perl will exit with them having the VMS status codes.
88#
89# Note that this is testing the perl exit() routine, and not the VMS
90# DCL EXIT statement.
91#
92# The value %x1000000 has been added to the exit code to prevent the
93# status message from being sent to the STDOUT and STDERR stream.
94#
95# Double quotes are needed to pass these commands through DCL to PERL
55a9fe1d 96
6cd63c21 97 $exit = run("exit 268632065"); # %CLI-S-NORMAL
7a7fd8e0 98 is( $exit >> 8, 0, 'PERL success exit' );
6cd63c21 99 is( ${^CHILD_ERROR_NATIVE} & 7, 1, 'VMS success exit' );
55a9fe1d 100
6cd63c21 101 $exit = run("exit 268632067"); # %CLI-I-NORMAL
7a7fd8e0 102 is( $exit >> 8, 0, 'PERL informational exit' );
6cd63c21 103 is( ${^CHILD_ERROR_NATIVE} & 7, 3, 'VMS informational exit' );
55a9fe1d 104
6cd63c21 105 $exit = run("exit 268632064"); # %CLI-W-NORMAL
7a7fd8e0 106 is( $exit >> 8, 1, 'Perl warning exit' );
6cd63c21 107 is( ${^CHILD_ERROR_NATIVE} & 7, 0, 'VMS warning exit' );
55a9fe1d 108
6cd63c21 109 $exit = run("exit 268632066"); # %CLI-E-NORMAL
7a7fd8e0 110 is( $exit >> 8, 2, 'Perl error exit' );
6cd63c21 111 is( ${^CHILD_ERROR_NATIVE} & 7, 2, 'VMS error exit' );
55a9fe1d 112
6cd63c21 113 $exit = run("exit 268632068"); # %CLI-F-NORMAL
7a7fd8e0 114 is( $exit >> 8, 4, 'Perl fatal error exit' );
6cd63c21 115 is( ${^CHILD_ERROR_NATIVE} & 7, 4, 'VMS fatal exit' );
7a7fd8e0 116
117 $exit = run("exit 02015320012"); # POSIX exit code 1
118 is( $exit >> 8, 1, 'Posix exit code 1' );
119
120 $exit = run("exit 02015323771"); # POSIX exit code 255
121 is( $exit >> 8 , 255, 'Posix exit code 255' );
55a9fe1d 122}
14cf881c 123
412a0271 124$exit_arg = 42;
125$exit = run("END { \$? = $exit_arg }");
126
127# On VMS, in the child process the actual exit status will be SS$_ABORT,
6cd63c21 128# or 44, which is what you get from any non-zero value of $? except for
129# 65535 that has been dePOSIXified by STATUS_UNIX_SET. If $? is set to
130# 65535 internally when there is a VMS status code that is valid, and
131# when Perl exits, it will set that status code.
132#
133# In this test on VMS, the child process exit with a SS$_ABORT, which
134# the parent stores in ${^CHILD_ERROR_NATIVE}. The SS$_ABORT code is
135# then translated to the UNIX code EINTR which has the value of 4 on VMS.
136#
137# This is complex because Perl translates internally generated UNIX
138# status codes to SS$_ABORT on exit, but passes through unmodified UNIX
139# status codes that exit() is called with by scripts.
140
7a7fd8e0 141$exit_arg = (44 & 7) if $^O eq 'VMS';
412a0271 142
143is( $exit >> 8, $exit_arg, 'Changing $? in END block' );
dc459aad 144}