From: Daniel Stenberg Date: Tue, 10 May 2005 11:19:12 +0000 (+0000) Subject: allow the ares/config.h display to fail X-Git-Tag: curl-7_14_0~32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e010ac970692132adc8bdb2ca96b291fe94bae5c;p=curl allow the ares/config.h display to fail --- diff --git a/tests/testcurl.pl b/tests/testcurl.pl index 67b189147..9e0ed9136 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -439,11 +439,12 @@ if (grepfile("define USE_ARES", "lib/config$confsuffix.h")) { logit "setup to build ares"; logit "display ares/config$confsuffix.h"; - open(F, "ares/config$confsuffix.h") or die "ares/config$confsuffix.h: $!"; - while () { - print if /^ *#/; + if(open(F, "ares/config$confsuffix.h")) { + while () { + print if /^ *#/; + } + close(F); } - close(F); logit "build ares"; chdir "ares";