X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fio%2Fargv.t;h=2595fa681cd2bb56244da0eb2904cc407faf73db;hb=b9fee9baee77e65285db6dc2a81cd0157909d1bd;hp=d6093f90ef542c03f2495e41087d00a9233e1e3a;hpb=146174a91a192983720a158796dc066226ad0e55;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/io/argv.t b/t/io/argv.t index d6093f9..2595fa6 100755 --- a/t/io/argv.t +++ b/t/io/argv.t @@ -5,7 +5,7 @@ BEGIN { unshift @INC, '../lib'; } -print "1..20\n"; +print "1..21\n"; use File::Spec; @@ -107,18 +107,20 @@ print "ok 15\n"; local $/; open F, 'Io_argv1.tmp' or die; ; # set $. = 1 + print "not " if defined(); # should hit eof + print "ok 16\n"; open F, $devnull or die; print "not " unless defined(); - print "ok 16\n"; - print "not " if defined(); print "ok 17\n"; print "not " if defined(); print "ok 18\n"; + print "not " if defined(); + print "ok 19\n"; open F, $devnull or die; # restart cycle again print "not " unless defined(); - print "ok 19\n"; - print "not " if defined(); print "ok 20\n"; + print "not " if defined(); + print "ok 21\n"; close F; }