Re: Add --enable-linker-version option
authorChristophe Lyon <christophe.lyon@linaro.org>
Thu, 16 Mar 2023 13:03:40 +0000 (13:03 +0000)
committerChristophe Lyon <christophe.lyon@linaro.org>
Thu, 16 Mar 2023 14:39:12 +0000 (14:39 +0000)
The recently-added ld-version*.d tests expect
.*GNU ld \(GNU Binutils\) 2.*
in the .comment section.

However, when buidling --with-pkgversion=XXX, we get
GNU ld (XXX) 2.[...]
instead, leading to a spurious FAIL.

This small patch replaces "GNU Binutils" with ".*" instead.

I inspected other testcases to see if we already had similar
occurrences but I couldn't see any, so I hope this fix is OK for the
purpose?

Thanks,

Christophe

ld/testsuite/ld-scripts/ld-version-2.d
ld/testsuite/ld-scripts/ld-version.d

index c8738fd82d61f4474c5ed681a9875c84b419fbd9..c696c093d6988ac41c454fef7d47995a1df4e596 100644 (file)
@@ -4,4 +4,4 @@
 # target: [is_elf_format]
 
 String dump of section '.comment':
-.*GNU ld \(GNU Binutils\) 2.*
+.*GNU ld \(.*\) 2.*
index a55fc5e003b52bdd3c997f9151dd426feadbb865..7d1ffc5a45e8d6559b5c77f57fd9fbb4163e7c29 100644 (file)
@@ -4,4 +4,4 @@
 # target: [is_elf_format]
 
 String dump of section '.comment':
-.*GNU ld \(GNU Binutils\) 2.*
+.*GNU ld \(.*\) 2.*