summaryrefslogtreecommitdiff
path: root/t/op/exec.t
diff options
context:
space:
mode:
authorMichael G. Schwern <schwern@pobox.com>2001-11-30 11:09:27 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2001-12-01 20:37:40 +0000
commit9247405f0fc7ef1a337f8e7678655ff1a73ce150 (patch)
tree6da02019044643df61db1c0ebeba90613811e01b /t/op/exec.t
parenta3775ca3239946dafd17edff355bf2a7e4e86b61 (diff)
downloadperl-9247405f0fc7ef1a337f8e7678655ff1a73ce150.tar.gz
Non-VMS-fixed and Win32-skipped version of
Subject: [PATCH t/op/exec.t] Portabilty fix Message-ID: <20011130160927.A10406@blackrider> p4raw-id: //depot/perl@13417
Diffstat (limited to 't/op/exec.t')
-rwxr-xr-xt/op/exec.t92
1 files changed, 54 insertions, 38 deletions
diff --git a/t/op/exec.t b/t/op/exec.t
index 2defb47db4..068cac3a7e 100755
--- a/t/op/exec.t
+++ b/t/op/exec.t
@@ -1,54 +1,70 @@
#!./perl
+BEGIN: {
+ chdir 't' if -d 't';
+ @INC = ('../lib');
+}
+
+# supress VMS whinging about bad execs.
+use vmsish qw(hushed);
+
$| = 1; # flush stdout
$ENV{LC_ALL} = 'C'; # Forge English error messages.
$ENV{LANGUAGE} = 'C'; # Ditto in GNU.
-if ($^O eq 'MSWin32' || $^O eq 'NetWare') {
- # XXX the system tests could be written to use ./perl and so work on Win32
- print "1..0 # Skip: shh, win32\n";
- exit(0);
-}
+require './test.pl';
+plan(tests => 12);
-if ($^O eq 'MacOS') {
- # XXX the system tests could be written to use ./perl and so work on Win32
- print "1..0 # Mostly useless tests for Mac OS\n";
- exit(0);
+my $exit;
+SKIP: {
+ skip("bug/feature of pdksh", 2) if $^O eq 'os2';
+
+ $exit = system qq{$^X -le "print q{ok 1 - interpreted system(EXPR)"}};
+ next_test();
+ is( $exit, 0, ' exited 0' );
}
-print "1..8\n";
+$exit = system qq{$^X -le "print q{ok 3 - split & direct call system(EXPR)"}};
+next_test();
+is( $exit, 0, ' exited 0' );
+
+# On VMS you need the quotes around the program or it won't work.
+# On Unix its the opposite.
+my $quote = $^O eq 'VMS' ? '"' : '';
+$exit = system $^X, '-le',
+ "${quote}print q{ok 5 - system(PROG, LIST)}${quote}";
+next_test();
+is( $exit, 0, ' exited 0' );
+
-if ($^O ne 'os2') {
- print "not ok 1\n" if system "echo ok \\1"; # shell interpreted
-}
-else {
- print "ok 1 # skipped: bug/feature of pdksh\n"; # shell interpreted
+is( system(qq{$^X -e "exit 0"}), 0, 'Explicit exit of 0' );
+
+my $exit_one = $^O eq 'VMS' ? 4 << 8 : 1 << 8;
+is( system(qq{$^X "-I../lib" -e "use vmsish qw(hushed); exit 1"}), $exit_one,
+ 'Explicit exit of 1' );
+
+
+$rc = system "lskdfj";
+unless( ok($rc == 255 << 8 or $rc == -1 or $rc == 256) ) {
+ print "# \$rc == $rc\n";
}
-print "not ok 2\n" if system "echo ok 2"; # split and directly called
-print "not ok 3\n" if system "echo", "ok", "3"; # directly called
-# these should probably be rewritten to match the examples in perlfunc.pod
-if (system "true") {print "not ok 4\n";} else {print "ok 4\n";}
+unless ( ok( $! == 2 or $! =~ /\bno\b.*\bfile/i or
+ $! == 13 or $! =~ /permission denied/i or
+ $! == 22 or $! =~ /invalid argument/ ) ) {
+ printf "# \$! eq %d, '%s'\n", $!, $!;
+}
+
+TODO: {
+ if( $^O =~ /Win32/ ) {
+ print "not ok 11 - exec failure doesn't terminate process # TODO Win32 exec failure waits for user input\n";
+ last TODO;
+ }
-if ($^O eq 'mpeix') {
- print "ok 5 # skipped: status broken on MPE/iX\n";
-} else {
- if ((system "/bin/sh -c 'exit 1'") != 256) { print "not "; }
- print "ok 5\n";
+ ok( !exec("lskdjfalksdjfdjfkls"),
+ "exec failure doesn't terminate process");
}
-$rc = system "lskdfj";
-if ($rc == 255 << 8 or $rc == -1 and
- (
- $! == 2 or
- $! =~ /\bno\b.*\bfile/i or
- $! == 13 or
- $! =~ /permission denied/i
- )
- )
- {print "ok 6\n";} else {print "not ok 6\n";}
-
-unless (exec "lskdjfalksdjfdjfkls") {print "ok 7\n";} else {print "not ok 7\n";}
-
-exec "echo","ok","8";
+exec $^X, '-le', qq{${quote}print 'ok 12 - exec PROG, LIST'${quote}};
+fail("This should never be reached if the exec() worked");