From b1531d9528261a0d24c761b07bf62477e57bfc1e Mon Sep 17 00:00:00 2001 From: "Lukasz A.J. Wrona" Date: Tue, 1 Aug 2017 15:21:24 +0100 Subject: [PATCH] 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". --- regression/test.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regression/test.pl b/regression/test.pl index a5de48639d..3118fd375f 100755 --- a/regression/test.pl +++ b/regression/test.pl @@ -184,7 +184,7 @@ sub dirs() { my @list; opendir CWD, "."; - @list = grep { !/^\./ && -d "$_" && !/CVS/ && -s "$_/test.desc" } readdir CWD; + @list = grep { !/^\./ && -d "$_" && !/CVS/ } readdir CWD; closedir CWD; @list = sort @list;