mirror of
https://github.com/curl/curl.git
synced 2024-11-21 01:16:58 +08:00
runtests.pl: Don't expect $TESTDIR/DISABLED to exist
If a non-standard $TESTDIR is used the file may not be necessary. Previously a "missing" file resulted in the warning: readline() on closed filehandle D at ./runtests.pl line 4940.
This commit is contained in:
parent
5828e886e6
commit
dc7a598126
@ -4865,20 +4865,21 @@ if(!$listonly) {
|
||||
}
|
||||
|
||||
#######################################################################
|
||||
# Fetch all disabled tests
|
||||
# Fetch all disabled tests, if there are any
|
||||
#
|
||||
|
||||
open(D, "<$TESTDIR/DISABLED");
|
||||
while(<D>) {
|
||||
if(/^ *\#/) {
|
||||
# allow comments
|
||||
next;
|
||||
}
|
||||
if($_ =~ /(\d+)/) {
|
||||
$disabled{$1}=$1; # disable this test number
|
||||
if(open(D, "<$TESTDIR/DISABLED")) {
|
||||
while(<D>) {
|
||||
if(/^ *\#/) {
|
||||
# allow comments
|
||||
next;
|
||||
}
|
||||
if($_ =~ /(\d+)/) {
|
||||
$disabled{$1}=$1; # disable this test number
|
||||
}
|
||||
}
|
||||
close(D);
|
||||
}
|
||||
close(D);
|
||||
|
||||
#######################################################################
|
||||
# If 'all' tests are requested, find out all test numbers
|
||||
|
Loading…
Reference in New Issue
Block a user