diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/testcurl.pl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl index 79ff7769a..2eea52970 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -492,6 +492,16 @@ if ($configurebuild) { # lib/Makefile.netware now copies curlbuild.h.dist as curlbuild.h system("$make -i -C lib -f Makefile.$targetos prebuild"); system("$make -i -C src -f Makefile.$targetos prebuild"); + # peek compiler predefined symbols... + system("echo | gcc -m32 -E -dM - >predef.txt"); + logit "display predef.txt"; + if(open(F, "predef.txt")) { + while (<F>) { + print; + } + close(F); + } + # } } |