diff options
author | Yang Tse <yangsita@gmail.com> | 2011-12-23 11:08:06 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-12-23 11:13:39 +0100 |
commit | e71e226f6ba7a21f51e647cebc0850ae0de94499 (patch) | |
tree | e2ee74167d03f6f31d58605c88378f40cb09af73 /tests/testcurl.pl | |
parent | b0eb963bc730d819bd6d88150e3e665c0de70116 (diff) | |
download | curl-e71e226f6ba7a21f51e647cebc0850ae0de94499.tar.gz |
testcurl.pl: temporary change
Allow autobuilds to run a couple of days without filtering out aclocal
underquoted definition warnings.
Diffstat (limited to 'tests/testcurl.pl')
-rwxr-xr-x | tests/testcurl.pl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl index 83a42614a..b6486ac2f 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -431,11 +431,12 @@ if ($git) { unlink "autom4te.cache"; # generate the build files - logit "invoke buildconf, but filter off aclocal underquoted definition warnings"; +# logit "invoke buildconf, but filter off aclocal underquoted definition warnings"; + logit "invoke buildconf"; open(F, "./buildconf 2>&1 |") or die; open(LOG, ">$buildlog") or die; while (<F>) { - next if /warning: underquoted definition of/; +# next if /warning: underquoted definition of/; print; print LOG; } |