diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-24 17:46:45 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-02-24 17:46:45 +0000 |
commit | 0994c4d08152f97e3d70c5ce59ee93b0aa88684c (patch) | |
tree | 5fcc3ca38de1159018ec3f9ff41d5db1edce58d1 /t/op/exec.t | |
parent | cb64dba4c7358c2e02c1ac7a571173423f71980f (diff) | |
download | perl-0994c4d08152f97e3d70c5ce59ee93b0aa88684c.tar.gz |
MPE/ix patches from Mark Bixby.
p4raw-id: //depot/cfgperl@5239
Diffstat (limited to 't/op/exec.t')
-rwxr-xr-x | t/op/exec.t | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/t/op/exec.t b/t/op/exec.t index 5d014369ba..23e9ec1cec 100755 --- a/t/op/exec.t +++ b/t/op/exec.t @@ -25,8 +25,12 @@ 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";} -if ((system "/bin/sh -c 'exit 1'") != 256) { print "not "; } -print "ok 5\n"; +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"; +} $rc = system "lskdfj"; if ($rc == 255 << 8 or $rc == -1 and |