summaryrefslogtreecommitdiff
path: root/tests/test_driver.pl
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2000-02-09 07:02:18 +0000
committerPaul Smith <psmith@gnu.org>2000-02-09 07:02:18 +0000
commite68a27ec7b22753dd2a61585a69290ca2e3c9d80 (patch)
treeb7b5f3afa662aee4e12f13772aaa663f370e5564 /tests/test_driver.pl
parent17f2dda0acc8f97e40819d75d99d85283d9027a1 (diff)
downloadgunmake-e68a27ec7b22753dd2a61585a69290ca2e3c9d80.tar.gz
* Fix some warnings in gettext.c and function.c
* Don't try to execute tests which are actually directories.
Diffstat (limited to 'tests/test_driver.pl')
-rw-r--r--tests/test_driver.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test_driver.pl b/tests/test_driver.pl
index 4fb738b..18dcc4b 100644
--- a/tests/test_driver.pl
+++ b/tests/test_driver.pl
@@ -117,7 +117,8 @@ sub toplevel
closedir (SCRIPTDIR);
foreach $dir (@dirs)
{
- next if ! -d "$scriptpath/$dir" || $dir =~ /^\.\.?$/ || $dir eq 'CVS';
+ next if ($dir =~ /^\.\.?$/ || $dir eq 'CVS' || $dir eq 'RCS'
+ || ! -d "$scriptpath/$dir");
push (@rmdirs, $dir);
mkdir ("$workpath/$dir", 0777)
|| &error ("Couldn't mkdir $workpath/$dir: $!\n");
@@ -127,7 +128,7 @@ sub toplevel
closedir (SCRIPTDIR);
foreach $test (@files)
{
- next if $test =~ /^\.\.?$/ || $test =~ /~$/ || $test eq 'CVS';
+ next if $test =~ /~$/ || -d $test;
push (@TESTS, "$dir/$test");
}
}