summaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-s390
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2020-11-23 05:06:51 -0800
committerH.J. Lu <hjl.tools@gmail.com>2020-11-23 05:13:55 -0800
commitcbf097d7b024fad33d13cc43ff0d35f2e0b11898 (patch)
treea9ec0a3b9187e473c607a1d54c817d21ed27d262 /ld/testsuite/ld-s390
parente1b9725dfaf7a993fa06ee71ae72e6ded7470f1b (diff)
downloadbinutils-gdb-cbf097d7b024fad33d13cc43ff0d35f2e0b11898.tar.gz
s390x: Set .got sh_entsize only if .got size > 0
bfd/ PR ld/26918 * elf64-s390.c (elf_s390_finish_dynamic_sections): Set .got sh_entsize only if .got size > 0. ld: PR ld/26918 * testsuite/ld-s390/pr26918-1.d: New file. * testsuite/ld-s390/pr26918-1.s: Likewise. * testsuite/ld-s390/s390.exp: Run all *.d tests.
Diffstat (limited to 'ld/testsuite/ld-s390')
-rw-r--r--ld/testsuite/ld-s390/pr26918-1.d5
-rw-r--r--ld/testsuite/ld-s390/pr26918-1.s19
-rw-r--r--ld/testsuite/ld-s390/s390.exp7
3 files changed, 31 insertions, 0 deletions
diff --git a/ld/testsuite/ld-s390/pr26918-1.d b/ld/testsuite/ld-s390/pr26918-1.d
new file mode 100644
index 00000000000..147ed980633
--- /dev/null
+++ b/ld/testsuite/ld-s390/pr26918-1.d
@@ -0,0 +1,5 @@
+#as: -m64 -mzarch -march=z900
+#ld: -m elf64_s390 -e start -static
+#readelf: -r --wide
+
+There are no relocations in this file.
diff --git a/ld/testsuite/ld-s390/pr26918-1.s b/ld/testsuite/ld-s390/pr26918-1.s
new file mode 100644
index 00000000000..980bc41564a
--- /dev/null
+++ b/ld/testsuite/ld-s390/pr26918-1.s
@@ -0,0 +1,19 @@
+ .machinemode zarch
+ .machine "z900"
+.text
+ .align 8
+.globl start
+ .type start, @function
+start:
+ larl %r1,foo@GOTENT
+ lg %r1,0(%r1)
+ lgf %r2,0(%r1)
+ br %r14
+ .size start, .-start
+.globl foo
+.bss
+ .align 4
+ .type foo, @object
+ .size foo, 4
+foo:
+ .zero 4
diff --git a/ld/testsuite/ld-s390/s390.exp b/ld/testsuite/ld-s390/s390.exp
index 660cf4b8b07..ee3438e8a7e 100644
--- a/ld/testsuite/ld-s390/s390.exp
+++ b/ld/testsuite/ld-s390/s390.exp
@@ -95,3 +95,10 @@ if [istarget "s390x-*-*"] {
run_ld_link_tests $s390tests
run_ld_link_tests $s390xtests
}
+
+set test_list [lsort [glob -nocomplain $srcdir/$subdir/*.d]]
+foreach t $test_list {
+ # We need to strip the ".d", but can leave the dirname.
+ verbose [file rootname $t]
+ run_dump_test [file rootname $t]
+}