summaryrefslogtreecommitdiff
path: root/t/comp/script.t
diff options
context:
space:
mode:
Diffstat (limited to 't/comp/script.t')
-rw-r--r--t/comp/script.t23
1 files changed, 23 insertions, 0 deletions
diff --git a/t/comp/script.t b/t/comp/script.t
new file mode 100644
index 0000000000..8e882933ce
--- /dev/null
+++ b/t/comp/script.t
@@ -0,0 +1,23 @@
+#!./perl
+
+# $Header: script.t,v 4.0 91/03/20 01:50:26 lwall Locked $
+
+print "1..3\n";
+
+$x = `./perl -e 'print "ok\n";'`;
+
+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.");
+print try 'print "ok\n";'; print try "\n";
+close try;
+
+$x = `./perl Comp.script`;
+
+if ($x eq "ok\n") {print "ok 2\n";} else {print "not ok 2\n";}
+
+$x = `./perl <Comp.script`;
+
+if ($x eq "ok\n") {print "ok 3\n";} else {print "not ok 3\n";}
+
+`/bin/rm -f Comp.script`;