]> granicus.if.org Git - curl/commitdiff
runtests: add 'debug' as a feature a test can require
authorDaniel Stenberg <daniel@haxx.se>
Tue, 19 Jul 2011 21:49:40 +0000 (23:49 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 19 Jul 2011 21:49:40 +0000 (23:49 +0200)
tests/FILEFORMAT
tests/runtests.pl

index 74fecacdd6626d2446fa78dd35519d9b0d9ac04e..fd036a2c9f6006888c7f88f73447de8538a5a761 100644 (file)
@@ -176,13 +176,13 @@ idn
 ipv6
 large_file
 libz
-netrc_debug
 NSS
 NTLM
 OpenSSL
 SSL
 socks
 unittest
+debug
 
 as well as each protocol that curl supports.  A protocol only needs to be
 specified if it is different from the server (useful when the server
index 749840b51362d2459058009480383c161fd56b09..d6b7d08b68be41520002705ea1788981eedbc164 100755 (executable)
@@ -2495,6 +2495,11 @@ sub singletest {
                 next;
             }
         }
+        elsif($f eq "debug") {
+            if($debug_build) {
+                next;
+            }
+        }
         elsif($f eq "large_file") {
             if($large_file) {
                 next;