From: Simon Ruderich Date: Tue, 13 Mar 2012 23:02:48 +0000 (+0100) Subject: Ignore false positive in ./configure summary. X-Git-Tag: 0.01~130 X-Git-Url: https://ruderich.org/simon/gitweb/?p=blhc%2Fblhc.git;a=commitdiff_plain;h=5b6b8e2eddbb9e6590e59a84d160e5d23bc09a9a Ignore false positive in ./configure summary. --- diff --git a/MANIFEST b/MANIFEST index 51ed4bc..0c53335 100644 --- a/MANIFEST +++ b/MANIFEST @@ -12,6 +12,7 @@ t/logs/bad-library t/logs/bad-multiline t/logs/c++ t/logs/cc +t/logs/configure t/logs/debian t/logs/empty t/logs/g++ diff --git a/bin/blhc b/bin/blhc index 383fcc1..1cb49a6 100755 --- a/bin/blhc +++ b/bin/blhc @@ -265,6 +265,11 @@ if ($bindnow) { } foreach my $line (@input) { + # Ignore false positives. + # + # ./configure summary. + next if $line =~ /^Compiler:\s+(cc|gcc|g\+\+|c\+\+)$/; + # Is this a compiler or linker command? my $compiler = 1; my $linker = 0; diff --git a/t/logs/configure b/t/logs/configure new file mode 100644 index 0000000..8e20f8f --- /dev/null +++ b/t/logs/configure @@ -0,0 +1,3 @@ +# Output by configure or similar tools which should be ignored. + +Compiler: gcc diff --git a/t/tests.t b/t/tests.t index f122c25..6013606 100644 --- a/t/tests.t +++ b/t/tests.t @@ -19,7 +19,7 @@ use strict; use warnings; -use Test::More tests => 66; +use Test::More tests => 68; sub is_blhc { @@ -280,6 +280,12 @@ LDFLAGS missing (-Wl,-z,now): gcc -shared -fPIC test.o -Wl,-z -Wl,relro -o .libs "; +# configure + +is_blhc 'configure', '', 0, + ''; + + # cc is_blhc 'cc', '--pie --bindnow', 4,