From: H.J. Lu Date: Tue, 20 Nov 2018 14:45:28 +0000 (-0800) Subject: readelf: Prune gaps warning in build notes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f92f9e8780f74c5084c59689f91d28b8a3471538;p=binutils-gdb.git readelf: Prune gaps warning in build notes Since some object files may not have build notes, it is normal to have gaps in build notes. PR binutils/23898 * testsuite/lib/binutils-common.exp (prune_warnings_extra): Prune gaps in build notes. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 0d980b7d189..ed80459dc19 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2018-11-20 H.J. Lu + + PR binutils/23898 + * testsuite/lib/binutils-common.exp (prune_warnings_extra): + Prune gaps in build notes. + 2018-11-13 Francois H. Theron * testsuite/binutils-all/nfp/test1.d: Test for swapped operand crc[]. diff --git a/binutils/testsuite/lib/binutils-common.exp b/binutils/testsuite/lib/binutils-common.exp index f1a153193cb..bbbbfbe8ada 100644 --- a/binutils/testsuite/lib/binutils-common.exp +++ b/binutils/testsuite/lib/binutils-common.exp @@ -442,6 +442,8 @@ proc prune_warnings_extra { text } { # The "\\1" is to try to preserve a "\n" but only if necessary. regsub -all "(^|\n)(\[^\n\]*: warning:\[^\n\]*unsupported GNU_PROPERTY_TYPE\[^\n\]*\n?)+" $text "\\1" text } + # PR binutils/23898: It is OK to have gaps in build notes. + regsub -all "(^|\n)(\[^\n\]*: Warning: Gap in build notes detected from\[^\n\]*\n?)+" $text "\\1" text return $text }