mirror of
https://github.com/curl/curl.git
synced 2026-08-02 09:10:29 +03:00
runtests: add 'debug' as a feature a test can require
This commit is contained in:
parent
d0d36f312f
commit
b9313af838
2 changed files with 6 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -2495,6 +2495,11 @@ sub singletest {
|
|||
next;
|
||||
}
|
||||
}
|
||||
elsif($f eq "debug") {
|
||||
if($debug_build) {
|
||||
next;
|
||||
}
|
||||
}
|
||||
elsif($f eq "large_file") {
|
||||
if($large_file) {
|
||||
next;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue