mirror of
https://github.com/moparisthebest/curl
synced 2024-12-24 17:18:48 -05:00
tests: make runtests check that disabled tests exists
... and error out if so. Removed '536' from DISABLED as there is no such test file. Closes #5288
This commit is contained in:
parent
1ae5860059
commit
75e8feb6fb
@ -22,7 +22,6 @@
|
|||||||
1307
|
1307
|
||||||
# Pipelining is deprecated
|
# Pipelining is deprecated
|
||||||
530
|
530
|
||||||
536
|
|
||||||
584
|
584
|
||||||
1900
|
1900
|
||||||
1901
|
1901
|
||||||
|
@ -5492,7 +5492,13 @@ sub disabledtests {
|
|||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
if($_ =~ /(\d+)/) {
|
if($_ =~ /(\d+)/) {
|
||||||
$disabled{$1}=$1; # disable this test number
|
my ($n) = $1;
|
||||||
|
$disabled{$n}=$n; # disable this test number
|
||||||
|
if(! -f "data/test$n") {
|
||||||
|
print STDERR "WARNING! Non-exiting test $n in DISABLED!\n";
|
||||||
|
# fail hard to make user notice
|
||||||
|
exit 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
close(D);
|
close(D);
|
||||||
|
Loading…
Reference in New Issue
Block a user