This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl 5.0 alpha 2
[perl5.git] / t / comp / script.t
1 #!./perl
2
3 # $RCSfile: script.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:23 $
4
5 print "1..3\n";
6
7 $x = `./perl -e 'print "ok\n";'`;
8
9 if ($x eq "ok\n") {print "ok 1\n";} else {print "not ok 1\n";}
10
11 open(try,">Comp.script") || (die "Can't open temp file.");
12 print try 'print "ok\n";'; print try "\n";
13 close try;
14
15 $x = `./perl Comp.script`;
16
17 if ($x eq "ok\n") {print "ok 2\n";} else {print "not ok 2\n";}
18
19 $x = `./perl <Comp.script`;
20
21 if ($x eq "ok\n") {print "ok 3\n";} else {print "not ok 3\n";}
22
23 `/bin/rm -f Comp.script`;