runtests: add 'debug' as a feature a test can require

This commit is contained in:
Daniel Stenberg
2011-07-19 23:49:40 +02:00
parent d0d36f312f
commit b9313af838
2 changed files with 6 additions and 1 deletions

View File

@@ -2495,6 +2495,11 @@ sub singletest {
next;
}
}
elsif($f eq "debug") {
if($debug_build) {
next;
}
}
elsif($f eq "large_file") {
if($large_file) {
next;