summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-08-19 20:22:07 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2003-08-19 20:22:07 +0000
commit93e325a7ee9ffb7570c36ae2c4e7da2dccb4726a (patch)
tree8e78d93bf04582f680188ae697949769ef6423c5 /t
parent5ca25ae7848f04e8f56f0effcd38164c0e19f7b9 (diff)
downloadperl-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-xt/TEST2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/TEST b/t/TEST
index ef98c27606..a3ed8f6354 100755
--- a/t/TEST
+++ b/t/TEST
@@ -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;