From: Dan Fandrich Date: Mon, 17 Nov 2008 20:24:13 +0000 (+0000) Subject: Display the time in verbose mode during the torture tests to help determine X-Git-Tag: curl-7_19_3~165 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cdd6054e089ea5273dffe670b37d4b5c9c3ca562;p=thirdparty%2Fcurl.git Display the time in verbose mode during the torture tests to help determine when the tests stall. --- diff --git a/tests/runtests.pl b/tests/runtests.pl index d7c2d84fc0..f44991c6b0 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -433,6 +433,7 @@ sub runclientoutput { # Memory allocation test and failure torture testing. # sub torture { + use POSIX "strftime"; my $testcmd = shift; my $gdbline = shift; @@ -469,7 +470,7 @@ sub torture { next; } - logmsg "Fail alloc no: $limit\r" if($verbose); + logmsg "Fail alloc no: $limit @ " . strftime ("%H:%M:%S", localtime) . "\r" if($verbose); # make the memory allocation function number $limit return failure $ENV{'CURL_MEMLIMIT'} = $limit;