2
0
mirror of https://github.com/curl/curl.git synced 2025-04-24 16:40:32 +08:00

refuse running the torture tests without a debug build

This commit is contained in:
Daniel Stenberg 2004-06-14 08:25:54 +00:00
parent 4cd96483f6
commit 1770563fff

@ -748,6 +748,10 @@ sub checkcurl {
die "couldn't run '$CURL'"
}
if(!$curl_debug && $torture) {
die "can't run torture tests since curl was not build with debug";
}
my $hostname=`hostname`;
my $hosttype=`uname -a`;