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 a testcase for "ld -d"


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

commit 9f06dab1e3acfb675669348a3ff331580d4eaf1e
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Fri Aug 4 05:39:56 2017 -0700

    Add a testcase for "ld -d"
    
    "ld -d" assigns space to common symbols even if a relocatable output
    file is specified (with '-r').
    
    	PR ld/21904
    	* testsuite/ld-elf/pr21904.d: New file.
    	* testsuite/ld-elf/pr21904.s: Likewise.

Diff:
---
 ld/ChangeLog                  | 6 ++++++
 ld/testsuite/ld-elf/pr21904.d | 6 ++++++
 ld/testsuite/ld-elf/pr21904.s | 5 +++++
 3 files changed, 17 insertions(+)

diff --git a/ld/ChangeLog b/ld/ChangeLog
index 99c1455..2cf0d49 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,9 @@
+2017-08-04  H.J. Lu  <hongjiu.lu@intel.com>
+
+	PR ld/21904
+	* testsuite/ld-elf/pr21904.d: New file.
+	* testsuite/ld-elf/pr21904.s: Likewise.
+
 2017-08-03  Nick Clifton  <nickc@redhat.com>
 
 	PR ld/21884
diff --git a/ld/testsuite/ld-elf/pr21904.d b/ld/testsuite/ld-elf/pr21904.d
new file mode 100644
index 0000000..1d464fc
--- /dev/null
+++ b/ld/testsuite/ld-elf/pr21904.d
@@ -0,0 +1,6 @@
+#ld: -d -r
+#readelf: -s
+
+#...
+.*: [0-9a-f]+ +4 +OBJECT +GLOBAL +DEFAULT +[0-9]+ foo
+#pass
diff --git a/ld/testsuite/ld-elf/pr21904.s b/ld/testsuite/ld-elf/pr21904.s
new file mode 100644
index 0000000..587a226
--- /dev/null
+++ b/ld/testsuite/ld-elf/pr21904.s
@@ -0,0 +1,5 @@
+	.ifdef	HPUX
+foo	.comm	4
+	.else
+	.comm	foo, 4, 4
+	.endif


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