diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-08-19 20:22:07 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-08-19 20:22:07 +0000 |
commit | 93e325a7ee9ffb7570c36ae2c4e7da2dccb4726a (patch) | |
tree | 8e78d93bf04582f680188ae697949769ef6423c5 /t | |
parent | 5ca25ae7848f04e8f56f0effcd38164c0e19f7b9 (diff) | |
download | perl-93e325a7ee9ffb7570c36ae2c4e7da2dccb4726a.tar.gz |
t/TEST fails to fail when it can't find tests.
p4raw-id: //depot/perl@20786
Diffstat (limited to 't')
-rwxr-xr-x | t/TEST | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ my $updir = File::Spec->updir; sub _find_tests { my($dir) = @_; - opendir DIR, $dir || die "Trouble opening $dir: $!"; + opendir DIR, $dir or die "Trouble opening $dir: $!"; foreach my $f (sort { $a cmp $b } readdir DIR) { next if $f eq $curdir or $f eq $updir; |