aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtests.pl18
1 files changed, 16 insertions, 2 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 012e8bcca..9b52e25b7 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -843,7 +843,9 @@ sub checksystem {
my $feat;
my $curl;
my $libcurl;
- my @version=`$CURL --version 2>/dev/null`;
+ my $versionerr="$LOGDIR/versionerr.log";
+ my $versioncmd="$CURL --version 2>$versionerr";
+ my @version=`$versioncmd`;
for(@version) {
chomp;
@@ -953,7 +955,19 @@ sub checksystem {
}
}
if(!$curl) {
- die "couldn't run '$CURL'"
+ logmsg "unable to get curl's version! further details are:\n";
+ logmsg "CURL: \n";
+ logmsg "$CURL \n";
+ logmsg "VERSIONCMD: \n";
+ logmsg "$versioncmd \n";
+ logmsg "STDOUT: \n";
+ for(@version) {
+ chomp;
+ logmsg "$_ \n";
+ }
+ logmsg "STDERR: \n";
+ displaylogcontent("$versionerr");
+ die "couldn't get curl's version!";
}
if(-r "../lib/config.h") {