X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fop%2Ffh.t;h=86e405a992a34caf80a5314f3714a9ef54381565;hb=917b24923c0362e8f2d8d1f3f612150902a8f3eb;hp=8000d9fa611d23a4df7741f392946089f35dfbda;hpb=35cd451c5a1303394968903750cc3b3a1a6bc892;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/op/fh.t b/t/op/fh.t index 8000d9f..86e405a 100755 --- a/t/op/fh.t +++ b/t/op/fh.t @@ -1,19 +1,21 @@ #!./perl -print "1..6\n"; +print "1..5\n"; my $test = 0; # symbolic filehandles should only result in glob entries with FH constructors +$|=1; my $a = "SYM000"; print "not " if defined(fileno($a)) or defined *{$a}; ++$test; print "ok $test\n"; select select $a; -print "not " if defined *{$a}; +print "not " unless defined *{$a}; ++$test; print "ok $test\n"; +$a++; print "not " if close $a or defined *{$a}; ++$test; print "ok $test\n";