This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: updated patch on the sysread, syswrite for VMS
[perl5.git] / t / op / exec.t
CommitLineData
8d063cd8
LW
1#!./perl
2
79072805 3# $RCSfile: exec.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:49 $
8d063cd8
LW
4
5$| = 1; # flush stdout
378cc40b 6print "1..8\n";
8d063cd8 7
378cc40b
LW
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
LW
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";