diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/testcurl.pl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl index 63246a8f1..a898eba3e 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -495,6 +495,14 @@ if ($configurebuild) { } } +logit "display include/curl/curlbuild.h"; +if(open(F, "include/curl/curlbuild.h")) { + while (<F>) { + print if /^ *#define/; + } + close(F); +} + logit "display lib/config$confsuffix.h"; open(F, "lib/config$confsuffix.h") or die "lib/config$confsuffix.h: $!"; while (<F>) { |