diff options
Diffstat (limited to 'contrib/perl5/t/op/fh.t')
-rwxr-xr-x | contrib/perl5/t/op/fh.t | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/contrib/perl5/t/op/fh.t b/contrib/perl5/t/op/fh.t new file mode 100755 index 000000000000..86e405a992a3 --- /dev/null +++ b/contrib/perl5/t/op/fh.t @@ -0,0 +1,26 @@ +#!./perl + +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 " unless defined *{$a}; +++$test; print "ok $test\n"; + +$a++; +print "not " if close $a or defined *{$a}; +++$test; print "ok $test\n"; + +print "not " unless open($a, ">&STDOUT") and defined *{$a}; +++$test; print $a "ok $test\n"; + +print "not " unless close $a; +++$test; print $a "not "; print "ok $test\n"; |