diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-03-13 22:48:46 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-03-13 22:48:46 +0000 |
commit | 20c932f8124a8b3087843039e78e4bb9b7b0dcf8 (patch) | |
tree | 7244b5f25f153138cd84a5e79d5f119419c4ef80 /t/op/stat.t | |
parent | 6d6dd8fe2389854be819a87e95a54330b9102b90 (diff) | |
download | perl-20c932f8124a8b3087843039e78e4bb9b7b0dcf8.tar.gz |
Check that stat and -X favours the file handle over the directory
handle when using *THINGY{IO} syntax too.
p4raw-id: //depot/perl@30572
Diffstat (limited to 't/op/stat.t')
-rwxr-xr-x | t/op/stat.t | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/t/op/stat.t b/t/op/stat.t index 2457b07f16..4ebe55b2c6 100755 --- a/t/op/stat.t +++ b/t/op/stat.t @@ -9,7 +9,7 @@ BEGIN { use Config; use File::Spec; -plan tests => 101; +plan tests => 107; my $Perl = which_perl(); @@ -510,11 +510,23 @@ SKIP: { #PVIO's hold dirhandle information, so let's test them too. SKIP: { - skip "No dirfd()", 3 unless $Config{d_dirfd}; + skip "No dirfd()", 9 unless $Config{d_dirfd}; ok(opendir(DIR, "."), 'Can open "." dir') || diag "Can't open '.': $!"; ok(stat(*DIR{IO}), "stat() on *DIR{IO} works"); + ok(-d _ , "The special file handle _ is set correctly"); ok(-d -r *DIR{IO} , "chained -x's on *DIR{IO}"); - closedir DIR; + + # And now for the ambigious bareword case + ok(open(DIR, "TEST"), 'Can open "TEST" dir') + || diag "Can't open 'TEST': $!"; + my $size = (stat(*DIR{IO}))[7]; + ok(defined $size, "stat() on *THINGY{IO} works"); + is($size, -s "TEST", + "size returned by stat of *THINGY{IO} is for the file"); + ok(-f _, "ambiguous *THINGY{IO} uses file handle, not dir handle"); + ok(-f *DIR{IO}); + closedir DIR or die $!; + close DIR or die $!; } } |