diff options
author | Maciej W. Rozycki <macro@imgtec.com> | 2017-01-23 11:18:33 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@imgtec.com> | 2017-01-23 11:24:21 +0000 |
commit | adcbdc63e5ccf663dacc8493cec63a95b653285e (patch) | |
tree | 38309a8f75f41b734d8bd1fc1b7062e0f8b3e0a3 /ld/testsuite/ld-elf/pr20828-a.sd | |
parent | 9966f7eece39ced8a09c190616b5b328bf97bfe5 (diff) | |
download | binutils-gdb-adcbdc63e5ccf663dacc8493cec63a95b653285e.tar.gz |
PR ld/20828: Relax symbol ordering in tests
Complement commit 81ff47b3a546 ("PR ld/20828: Fix linker script symbols
wrongly forced local with section GC") and make tests check for the
presence of global `_fdata' and `_edata' symbols separately, removing
any dependency on symbol table ordering for tests to succeed and
removing:
FAIL: PR ld/20828 dynamic symbols with section GC (auxiliary shared library)
FAIL: PR ld/20828 dynamic symbols with section GC (plain)
failures with the `x86_64-solaris2' target, which has additional
intervening entries:
Symbol table '.dynsym' contains 6 entries:
Num: Value Size Type Bind Vis Ndx Name
0: 0000000000000000 0 NOTYPE LOCAL DEFAULT UND
1: 0000000000000000 0 NOTYPE GLOBAL DEFAULT 1 _fdata
2: 0000000000000000 0 OBJECT GLOBAL DEFAULT 1 _DYNAMIC
3: 0000000000000000 0 OBJECT GLOBAL DEFAULT ABS _PROCEDURE_LINKAGE_TABLE_
4: 0000000000000000 0 NOTYPE GLOBAL DEFAULT 1 _edata
5: 00000000000001b8 0 OBJECT GLOBAL DEFAULT 4 _GLOBAL_OFFSET_TABLE_
Rename dump pattern files accordingly for consistency.
ld/
PR ld/20828
* testsuite/ld-elf/pr20828-1.sd: Remove test.
* testsuite/ld-elf/pr20828-a.sd: New test.
* testsuite/ld-elf/pr20828-2a.sd: Rename test to...
* testsuite/ld-elf/pr20828-b.sd: ... this.
* testsuite/ld-elf/pr20828-2b.sd: Rename test to...
* testsuite/ld-elf/pr20828-c.sd: ... this.
* testsuite/ld-elf/shared.exp: Adjust accordingly.
Diffstat (limited to 'ld/testsuite/ld-elf/pr20828-a.sd')
-rw-r--r-- | ld/testsuite/ld-elf/pr20828-a.sd | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ld/testsuite/ld-elf/pr20828-a.sd b/ld/testsuite/ld-elf/pr20828-a.sd new file mode 100644 index 00000000000..c24e5ad583c --- /dev/null +++ b/ld/testsuite/ld-elf/pr20828-a.sd @@ -0,0 +1,9 @@ +# Make sure `_fdata' is global rather than local in the dynamic symbol table, +# e.g.: +# Num: Value Size Type Bind Vis Ndx Name +# 1: 00000000 0 NOTYPE GLOBAL DEFAULT 1 _fdata +# vs: +# 1: 00000000 0 NOTYPE LOCAL DEFAULT 1 _fdata +#... + *[0-9]+: +[0-9a-f]+ +0 +NOTYPE +GLOBAL +DEFAULT +[0-9]+ +_fdata +#pass |