5 $ENV{LC_ALL} = 'C'; # Forge English error messages.
6 $ENV{LANGUAGE} = 'C'; # Ditto in GNU.
8 if ($^O eq 'MSWin32') {
9 # XXX the system tests could be written to use ./perl and so work on Win32
10 print "1..0 # Skip: shh, win32\n";
17 print "not ok 1\n" if system "echo ok \\1"; # shell interpreted
20 print "ok 1 # skipped: bug/feature of pdksh\n"; # shell interpreted
22 print "not ok 2\n" if system "echo ok 2"; # split and directly called
23 print "not ok 3\n" if system "echo", "ok", "3"; # directly called
25 # these should probably be rewritten to match the examples in perlfunc.pod
26 if (system "true") {print "not ok 4\n";} else {print "ok 4\n";}
29 print "ok 5 # skipped: status broken on MPE/iX\n";
31 if ((system "/bin/sh -c 'exit 1'") != 256) { print "not "; }
35 $rc = system "lskdfj";
36 if ($rc == 255 << 8 or $rc == -1 and
39 $! =~ /\bno\b.*\bfile/i or
41 $! =~ /permission denied/i
44 {print "ok 6\n";} else {print "not ok 6\n";}
46 unless (exec "lskdjfalksdjfdjfkls") {print "ok 7\n";} else {print "not ok 7\n";}