blob: 6f55896fdf3ba33e3a85a2c40c8c22a78d6a0517 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!./perl
# $Header: argv.t,v 4.0 91/03/20 01:50:46 lwall Locked $
print "1..5\n";
open(try, '>Io.argv.tmp') || (die "Can't open temp file.");
print try "a line\n";
close try;
$x = `./perl -e 'while (<>) {print \$.,\$_;}' Io.argv.tmp Io.argv.tmp`;
if ($x eq "1a line\n2a line\n") {print "ok 1\n";} else {print "not ok 1\n";}
$x = `echo foo|./perl -e 'while (<>) {print $_;}' Io.argv.tmp -`;
if ($x eq "a line\nfoo\n") {print "ok 2\n";} else {print "not ok 2\n";}
$x = `echo foo|./perl -e 'while (<>) {print $_;}'`;
if ($x eq "foo\n") {print "ok 3\n";} else {print "not ok 3 :$x:\n";}
@ARGV = ('Io.argv.tmp', 'Io.argv.tmp', '/dev/null', 'Io.argv.tmp');
while (<>) {
$y .= $. . $_;
if (eof()) {
if ($. == 3) {print "ok 4\n";} else {print "not ok 4\n";}
}
}
if ($y eq "1a line\n2a line\n3a line\n")
{print "ok 5\n";}
else
{print "not ok 5\n";}
`/bin/rm -f Io.argv.tmp`;
|