This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl 2.0 patch 1: removed redundant debugging code in regexp.c
[perl5.git] / t / op.exec
1 #!./perl
2
3 # $Header: op.exec,v 2.0 88/06/05 00:13:46 root Exp $
4
5 $| = 1;                         # flush stdout
6 print "1..8\n";
7
8 print "not ok 1\n" if system "echo ok \\1";     # shell interpreted
9 print "not ok 2\n" if system "echo ok 2";       # split and directly called
10 print "not ok 3\n" if system "echo", "ok", "3"; # directly called
11
12 if (system "true") {print "not ok 4\n";} else {print "ok 4\n";}
13
14 if ((system "/bin/sh -c 'exit 1'") != 256) { print "not "; }
15 print "ok 5\n";
16
17 if ((system "lskdfj") == 255 << 8) {print "ok 6\n";} else {print "not ok 6\n";}
18
19 unless (exec "lskdjfalksdjfdjfkls") {print "ok 7\n";} else {print "not ok 7\n";}
20
21 exec "echo","ok","8";