-DL and PERL_DEBUG_MSTATS unravelled
[p5sagit/p5-mst-13.2.git] / t / op / exec.t
CommitLineData
8d063cd8 1#!./perl
2
79072805 3# $RCSfile: exec.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:49 $
8d063cd8 4
5$| = 1; # flush stdout
68dc0745 6
7if ($^O eq 'MSWin32') {
8 print "# exec is unsupported on Win32\n";
1d3434b8 9 # XXX the system tests could be written to use ./perl and so work on Win32
68dc0745 10 print "1..0\n";
11 exit(0);
12}
13
378cc40b 14print "1..8\n";
8d063cd8 15
378cc40b 16print "not ok 1\n" if system "echo ok \\1"; # shell interpreted
17print "not ok 2\n" if system "echo ok 2"; # split and directly called
18print "not ok 3\n" if system "echo", "ok", "3"; # directly called
8d063cd8 19
1d3434b8 20# these should probably be rewritten to match the examples in perlfunc.pod
378cc40b 21if (system "true") {print "not ok 4\n";} else {print "ok 4\n";}
22
23if ((system "/bin/sh -c 'exit 1'") != 256) { print "not "; }
24print "ok 5\n";
25
26if ((system "lskdfj") == 255 << 8) {print "ok 6\n";} else {print "not ok 6\n";}
27
28unless (exec "lskdjfalksdjfdjfkls") {print "ok 7\n";} else {print "not ok 7\n";}
29
30exec "echo","ok","8";