summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-05-09 07:45:30 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-05-09 07:45:30 +0000
commitb2b66f749a7e2715bf6c36903c5b9cba2a121c38 (patch)
treed9f9cf699e65acf36b4a53cfa861c22bcd55ced9
parent708ed6fded0174681be34a21141b18f3a5ce8b00 (diff)
downloadgnurl-b2b66f749a7e2715bf6c36903c5b9cba2a121c38.tar.gz
gnurl-b2b66f749a7e2715bf6c36903c5b9cba2a121c38.tar.bz2
gnurl-b2b66f749a7e2715bf6c36903c5b9cba2a121c38.zip
no need to display src/config.h anymore since it is a duplicate of lib/config.h
but we could use having a look at ares/config.h when that is used
-rwxr-xr-xtests/testcurl.pl14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl
index a8da82785..67b189147 100755
--- a/tests/testcurl.pl
+++ b/tests/testcurl.pl
@@ -435,16 +435,16 @@ while (<F>) {
}
close(F);
-logit "display src/config$confsuffix.h";
-open(F, "src/config$confsuffix.h") or die "src/config$confsuffix.h: $!";
-while (<F>) {
- print if /^ *#/;
-}
-close(F);
-
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 (<F>) {
+ print if /^ *#/;
+ }
+ close(F);
+
logit "build ares";
chdir "ares";