diff options
author | Yang Tse <yangsita@gmail.com> | 2011-12-26 17:01:04 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-12-26 17:01:04 +0100 |
commit | 82c344a3471f705340fbfc80b9ccb1a7d87fe700 (patch) | |
tree | 1ab4944beb6a853f85266dcdc7ce1e1f348a2e28 /tests/testcurl.pl | |
parent | 9f7f6a62ff3bf2fcf87c9ff64c6c090c1940fd70 (diff) | |
download | curl-82c344a3471f705340fbfc80b9ccb1a7d87fe700.tar.gz |
testcurl.pl: third party m4 warnings filtering adjustment
Make testcurl.pl ignore messages pertaining to third party m4 files we don't
care nor use on a file basis policy while retaining all other warnings.
This closes temporary commit e71e226f
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 b6486ac2f..57af99263 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -431,12 +431,13 @@ if ($git) { unlink "autom4te.cache"; # generate the build files -# 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/; + # ignore messages pertaining to third party m4 files we don't care + next if /aclocal\/gtk.m4/; + next if /aclocal\/gtkextra.m4/; print; print LOG; } |