perl 4.0 patch 9: patch #4, continued
[p5sagit/p5-mst-13.2.git] / t / op / exec.t
CommitLineData
8d063cd8 1#!./perl
2
fe14fcc3 3# $Header: exec.t,v 4.0 91/03/20 01:52:25 lwall Locked $
8d063cd8 4
5$| = 1; # flush stdout
378cc40b 6print "1..8\n";
8d063cd8 7
378cc40b 8print "not ok 1\n" if system "echo ok \\1"; # shell interpreted
9print "not ok 2\n" if system "echo ok 2"; # split and directly called
10print "not ok 3\n" if system "echo", "ok", "3"; # directly called
8d063cd8 11
378cc40b 12if (system "true") {print "not ok 4\n";} else {print "ok 4\n";}
13
14if ((system "/bin/sh -c 'exit 1'") != 256) { print "not "; }
15print "ok 5\n";
16
17if ((system "lskdfj") == 255 << 8) {print "ok 6\n";} else {print "not ok 6\n";}
18
19unless (exec "lskdjfalksdjfdjfkls") {print "ok 7\n";} else {print "not ok 7\n";}
20
21exec "echo","ok","8";