This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Add aligned string merge test


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

commit 884151a7b8f1770a823e5017c8f5025802c44f24
Author: Alan Modra <amodra@gmail.com>
Date:   Tue Feb 24 23:04:20 2015 +1030

    Add aligned string merge test
    
    	* ld-elf/merge3.s, * ld-elf/merge3.d: New test.

Diff:
---
 ld/testsuite/ChangeLog       |  4 ++++
 ld/testsuite/ld-elf/merge3.d | 14 ++++++++++++++
 ld/testsuite/ld-elf/merge3.s | 17 +++++++++++++++++
 3 files changed, 35 insertions(+)

diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog
index b362a0a..5883022 100644
--- a/ld/testsuite/ChangeLog
+++ b/ld/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2015-02-24  Alan Modra  <amodra@gmail.com>
+
+	* ld-elf/merge3.s, * ld-elf/merge3.d: New test.
+
 2015-02-24  Senthil Kumar Selvaraj  <senthil_kumar.selvaraj@atmel.com>
 
 	* ld-avr/region_overflow.d: New test.
diff --git a/ld/testsuite/ld-elf/merge3.d b/ld/testsuite/ld-elf/merge3.d
new file mode 100644
index 0000000..c595135
--- /dev/null
+++ b/ld/testsuite/ld-elf/merge3.d
@@ -0,0 +1,14 @@
+#source: merge3.s
+#ld: -T merge.ld
+#objdump: -s
+#xfail: "arc-*-*" "d30v-*-*" "dlx-*-*" "hppa64-*-*"
+#xfail: "i960-*-*" "ip2k-*-*" "pj-*-*"
+
+.*:     file format .*elf.*
+
+Contents of section \.text:
+ 1000 (20100000|00001020) (10100000|00001010) (18100000|00001018) .*
+Contents of section \.rodata:
+ 1010 64656667 00000000 30313233 34353637  defg....01234567
+ 1020 61626364 65666700                    abcdefg.        
+#pass
diff --git a/ld/testsuite/ld-elf/merge3.s b/ld/testsuite/ld-elf/merge3.s
new file mode 100644
index 0000000..9328d4d
--- /dev/null
+++ b/ld/testsuite/ld-elf/merge3.s
@@ -0,0 +1,17 @@
+	.section .rodata.str1.8,"aMS",%progbits,1
+	.p2align 3
+.LC0:
+	.asciz	"abcdefg"
+	.p2align 3
+.LC1:
+	.asciz	"defg"
+	.p2align 3
+.LC2:
+	.asciz	"01234567abcdefg"
+
+	.text
+	.global _start
+_start:
+	.long	.LC0
+	.long	.LC1
+	.long	.LC2


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]