[binutils-gdb] ld: Update PR ld/25237 test

H.J. Lu hjl@sourceware.org
Wed Mar 5 23:00:14 GMT 2025


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=5ccf7a5512db87a8459b90ce2bb25a6aad50cb72

commit 5ccf7a5512db87a8459b90ce2bb25a6aad50cb72
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Wed Mar 5 19:08:49 2025 +0800

    ld: Update PR ld/25237 test
    
    1. Skip targets which don't support the .bss section alignment, 1 << 16.
    2. Replace .bss with ".section .bss".
    3. Use ".zero 0xb60000" for targets which pad the section to its alignment.
    
            PR ld/25237
            * testsuite/ld-elf/pr25237.d: Skip avr-*-* and h8300-*-*.
            Update expected segment size to 0xb60000.
            * testsuite/ld-elf/pr25237.s: Use ".section .bss" and
            ".zero 0xb60000".
    
    Signed-off-by: H.J. Lu <hjl.tools@gmail.com>

Diff:
---
 ld/testsuite/ld-elf/pr25237.d | 5 ++++-
 ld/testsuite/ld-elf/pr25237.s | 6 +++---
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/ld/testsuite/ld-elf/pr25237.d b/ld/testsuite/ld-elf/pr25237.d
index a85ec501f6c..3db187738f3 100644
--- a/ld/testsuite/ld-elf/pr25237.d
+++ b/ld/testsuite/ld-elf/pr25237.d
@@ -1,6 +1,9 @@
 #ld:
 #readelf: -l -W
+# Address bits of these targets don't support the .bss section alignment,
+# 1 << 16.
+#notarget: avr-*-* h8300-*-*
 
 #...
- +LOAD +0x0+ +0x[0-9a-f]+ +0x[0-9a-f]+ +0x0+ +0xb5dce8+ +RW +0x10000
+ +LOAD +0x0+ +0x[0-9a-f]+ +0x[0-9a-f]+ +0x0+ +0xb60000+ +RW +0x10000
 #pass
diff --git a/ld/testsuite/ld-elf/pr25237.s b/ld/testsuite/ld-elf/pr25237.s
index 17864696fee..5011ffc10d1 100644
--- a/ld/testsuite/ld-elf/pr25237.s
+++ b/ld/testsuite/ld-elf/pr25237.s
@@ -10,10 +10,10 @@ main:
 	.globl	_main	/* Used by LynxOS targets.  */
 _main:
 	.dc.a 0
-	.bss
+	.section	.bss, "aw", %nobits
 	.p2align 16
 	.type	bss, %object
-	.size	bss, 11918568
+	.size	bss, 0xb60000
 bss:
-	.zero	11918568
+	.zero	0xb60000
 	.section	.note.GNU-stack,"",%progbits


More information about the Binutils-cvs mailing list