Re: new exit tests on VMS
[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';
8 @INC = '../lib';
9}
10
ee2f883e 11# VMS and Windows need -e "...", most everything else works better with '
12my $quote = $^O =~ /^(VMS|MSWin\d+)$/ ? q{"} : q{'};
14cf881c 13
14# Run some code, return its wait status.
15sub run {
16 my($code) = shift;
17 my $cmd = "$^X -e ";
18 return system($cmd.$quote.$code.$quote);
19}
20
55a9fe1d 21## can't use this in 'use Test::More' yet
22##my $numtests = ($^O eq 'VMS') ? 7 : 3;
14cf881c 23
55a9fe1d 24use Test::More tests => 'no_plan';
25
26my $exit, $exit_arg;
14cf881c 27
28$exit = run('exit');
29is( $exit >> 8, 0, 'Normal exit' );
30
55a9fe1d 31if ($^O ne 'VMS') {
32
33 $exit = run('exit 42');
34 is( $exit >> 8, 42, 'Non-zero exit' );
35
36} else {
37
38# On VMS, successful returns from system() are always 0, warnings are 1,
39# errors are 2, and fatal errors are 4.
40
41 $exit = run("exit 196609"); # %CLI-S-NORMAL
42 is( $exit >> 8, 0, 'success exit' );
43
44 $exit = run("exit 196611"); # %CLI-I-NORMAL
45 is( $exit >> 8, 0, 'informational exit' );
46
47 $exit = run("exit 196608"); # %CLI-W-NORMAL
48 is( $exit >> 8, 1, 'warning exit' );
49
50 $exit = run("exit 196610"); # %CLI-E-NORMAL
51 is( $exit >> 8, 2, 'error exit' );
52
53 $exit = run("exit 196612"); # %CLI-F-NORMAL
54 is( $exit >> 8, 4, 'fatal error exit' );
55}
14cf881c 56
57$exit = run('END { $? = 42 }');
58is( $exit >> 8, 42, 'Changing $? in END block' );