t/x2p/s2p.t fix for VMS in UNIX mode
[p5sagit/p5-mst-13.2.git] / t / comp / script.t
old mode 100644 (file)
new mode 100755 (executable)
index 8e88293..83d733a
@@ -1,23 +1,29 @@
 #!./perl
 
-# $Header: script.t,v 4.0 91/03/20 01:50:26 lwall Locked $
+BEGIN {
+    chdir 't';
+    @INC = '../lib';
+    require './test.pl';       # for which_perl() etc
+}
+
+my $Perl = which_perl();
+
+my $filename = tempfile();
 
 print "1..3\n";
 
-$x = `./perl -e 'print "ok\n";'`;
+$x = `$Perl -le "print 'ok';"`;
 
 if ($x eq "ok\n") {print "ok 1\n";} else {print "not ok 1\n";}
 
-open(try,">Comp.script") || (die "Can't open temp file.");
+open(try,">$filename") || (die "Can't open temp file.");
 print try 'print "ok\n";'; print try "\n";
-close try;
+close try or die "Could not close: $!";
 
-$x = `./perl Comp.script`;
+$x = `$Perl $filename`;
 
 if ($x eq "ok\n") {print "ok 2\n";} else {print "not ok 2\n";}
 
-$x = `./perl <Comp.script`;
+$x = `$Perl <$filename`;
 
 if ($x eq "ok\n") {print "ok 3\n";} else {print "not ok 3\n";}
-
-`/bin/rm -f Comp.script`;