From: Gunter Knauf Date: Mon, 5 Jul 2004 23:35:49 +0000 (+0000) Subject: be a bit more verbose when things go wrong. X-Git-Tag: curl-7_12_1~107 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9a6df07d3ded3575382cbcf8459efbe2ef197701;p=thirdparty%2Fcurl.git be a bit more verbose when things go wrong. --- diff --git a/tests/testcurl.pl b/tests/testcurl.pl index 24ea04fa9d..4881b408e5 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -357,14 +357,14 @@ if ($gnulikebuild) { } logit "display lib/config$confsuffix.h"; -open(F, "lib/config$confsuffix.h") or die; +open(F, "lib/config$confsuffix.h") or die "lib/config$confsuffix.h: $!"; while () { print if /^ *#/; } close(F); logit "display src/config$confsuffix.h"; -open(F, "src/config$confsuffix.h") or die; +open(F, "src/config$confsuffix.h") or die "src/config$confsuffix.h: $!"; while () { print if /^ *#/; }