perl 5.003_07: Configure
[p5sagit/p5-mst-13.2.git] / t / comp / script.t
old mode 100644 (file)
new mode 100755 (executable)
index 8e88293..f37e46b
@@ -1,10 +1,11 @@
 #!./perl
 
-# $Header: script.t,v 4.0 91/03/20 01:50:26 lwall Locked $
+# $RCSfile: script.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:23 $
 
 print "1..3\n";
 
 $x = `./perl -e 'print "ok\n";'`;
+if ($x =~ /DCL-W-NOCOMD/) { $x = `\$ mcr sys\$disk:[]perl. -e "print ""ok\n""";`; }
 
 if ($x eq "ok\n") {print "ok 1\n";} else {print "not ok 1\n";}
 
@@ -13,11 +14,13 @@ print try 'print "ok\n";'; print try "\n";
 close try;
 
 $x = `./perl Comp.script`;
+if ($x =~ /DCL-W-NOCOMD/) { $x = `\$ mcr sys\$disk:[]perl. Comp.script`; }
 
 if ($x eq "ok\n") {print "ok 2\n";} else {print "not ok 2\n";}
 
 $x = `./perl <Comp.script`;
+if ($x =~ /DCL-W-NOCOMD/) { $x = `\$ mcr sys\$disk:[]perl. <Comp.script`; }
 
 if ($x eq "ok\n") {print "ok 3\n";} else {print "not ok 3\n";}
 
-`/bin/rm -f Comp.script`;
+unlink 'Comp.script' || `/bin/rm -f Comp.script`;