From: Daniel Stenberg Date: Mon, 14 Jun 2004 08:25:54 +0000 (+0000) Subject: refuse running the torture tests without a debug build X-Git-Tag: curl-7_12_1~277 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1770563fffde91688608bf1359af6170592df0a8;p=thirdparty%2Fcurl.git refuse running the torture tests without a debug build --- diff --git a/tests/runtests.pl b/tests/runtests.pl index 831c095df1..de61feffd7 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -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`;