Skip to content

Commit b1531d9

Browse files
author
Lukasz A.J. Wrona
committed
test.pl - go through all child directories
Fixes a bug where test.pl would ignore directories that contain valid tests (*.desc and *.java combo) and only test those directories that contained a file with exact name "test.desc".
1 parent 657ca67 commit b1531d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

regression/test.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ ()
184184
my @list;
185185

186186
opendir CWD, ".";
187-
@list = grep { !/^\./ && -d "$_" && !/CVS/ && -s "$_/test.desc" } readdir CWD;
187+
@list = grep { !/^\./ && -d "$_" && !/CVS/ } readdir CWD;
188188
closedir CWD;
189189

190190
@list = sort @list;

0 commit comments

Comments
 (0)