From 5b6b6283f32f0f75f48bbfd94108bb73cc7728b7 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 19 Mar 2005 01:00:00 +0000 Subject: [PATCH] some additional debug output --- tests/testcurl.pl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/testcurl.pl b/tests/testcurl.pl index d7bd6c9e5..2e47a6244 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -449,9 +449,11 @@ if (grepfile("define USE_ARES", "lib/config$confsuffix.h")) { chdir "ares"; if ($targetos && !$configurebuild) { + logit "make -f Makefile.$targetos"; open(F, "make -f Makefile.$targetos 2>&1 |") or die; } else { + logit "make"; open(F, "make 2>&1 |") or die; } while () { @@ -470,8 +472,8 @@ if (grepfile("define USE_ARES", "lib/config$confsuffix.h")) { chdir "$pwd/$build"; } -logit "run make"; if ($configurebuild) { + logit "make -i"; open(F, "make -i 2>&1 |") or die; while () { s/$pwd//g; @@ -480,6 +482,7 @@ if ($configurebuild) { close(F); } else { + logit "make -i $targetos"; if ($^O eq 'MSWin32') { if ($targetos =~ /vc/) { open(F, "nmake -i $targetos|") or die; @@ -527,7 +530,7 @@ if ($configurebuild && !$crosscompile) { if($runtestopts) { $o = "TEST_F=\"$runtestopts\" "; } - logit "run make ${o}test-full"; + logit "make ${o}test-full"; open(F, "make ${o}test-full 2>&1 |") or die; open(LOG, ">$buildlog") or die; while () {