summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/testcurl.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl
index 2e47a6244..a8da82785 100755
--- a/tests/testcurl.pl
+++ b/tests/testcurl.pl
@@ -522,7 +522,12 @@ if ($targetos =~ /netware/) {
}
elsif(!$crosscompile) {
logit "display curl$binext --version output";
- system("./src/curl$binext --version");
+ open(F, "./src/curl$binext --version|");
+ while(<F>) {
+ print;
+ print LOG;
+ }
+ close(F);
}
if ($configurebuild && !$crosscompile) {