diff options
author | Nick Clifton <nickc@redhat.com> | 2020-07-02 11:30:52 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2020-07-02 11:30:52 +0100 |
commit | 0942c7ab94e554657c3e11ab85ae7f15373ee80d (patch) | |
tree | b9a60c0257ad7aa26fe5985f5ae279db2e4528cd /ld/testsuite/ld-mips-elf | |
parent | 1cdf9e33eadd3bf091fe64ed30daa0263f736ea2 (diff) | |
download | gdb-0942c7ab94e554657c3e11ab85ae7f15373ee80d.zip gdb-0942c7ab94e554657c3e11ab85ae7f15373ee80d.tar.gz gdb-0942c7ab94e554657c3e11ab85ae7f15373ee80d.tar.bz2 |
Change readelf's display of symbol names (when not in --wide mode) so that if they are going to be truncated then "[...]" is displayed at the end. Add a comment line option to disable this enhancement and restore the old behaviour.
PR 26028
binutils* readelf.c (print_symbol): Handle truncation of symbol names.
(options): Add -T/--silent-truncation option.
(parse_args): Handle the option.
(print_dynamic_symbol): Correct calculation of width available to
display symbol name.
* doc/binutils.texi: Document the -T option to readelf.
* NEWS: Mention the new feature.
gas * testsuite/gas/ia64/group-2.d: Add -T option to readelf
command line.
* testsuite/gas/ia64/unwind.d: Likewise.
* testsuite/gas/mmix/bspec-1.d: Likewise.
* testsuite/gas/mmix/bspec-2.d: Likewise.
* testsuite/gas/mmix/comment-1.d: Likewise.
* testsuite/gas/tic6x/scomm-directive-4.d: Likewise.
ld * testsuite/ld-powerpc/powerpc.exp: Add -T option to readelf
command line when running some tests.
* testsuite/ld-arm/arm-elf.exp: Likewise.
* testsuite/ld-mips-elf/mips-elf.exp: Likewise.
* testsuite/ld-mmix/local1.d: Likewise.
* testsuite/ld-mmix/local3.d: Likewise.
* testsuite/ld-mmix/local5.d: Likewise.
* testsuite/ld-mmix/local7.d: Likewise.
* testsuite/ld-powerpc/powerpc.exp: Likewise.
Diffstat (limited to 'ld/testsuite/ld-mips-elf')
-rw-r--r-- | ld/testsuite/ld-mips-elf/mips-elf.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/testsuite/ld-mips-elf/mips-elf.exp b/ld/testsuite/ld-mips-elf/mips-elf.exp index 3d62051..e98429c 100644 --- a/ld/testsuite/ld-mips-elf/mips-elf.exp +++ b/ld/testsuite/ld-mips-elf/mips-elf.exp @@ -29,7 +29,7 @@ if {[istarget "mips*-*-vxworks"]} { {"VxWorks executable test 1 (dynamic)" \ "tmpdir/libvxworks1.so -Tvxworks1.ld -q --force-dynamic" "" "-mips2" {vxworks1.s} - {{readelf --relocs vxworks1.rd} {objdump -dr vxworks1.dd}} + {{readelf {--relocs -T} vxworks1.rd} {objdump -dr vxworks1.dd}} "vxworks1"} {"VxWorks executable test 2 (dynamic)" \ "-Tvxworks1.ld -q --force-dynamic" "" @@ -1575,7 +1575,7 @@ proc run_mips_undefweak_test { name abi args } { [list \ [list objdump -d pr21375${objsuf}.dd] \ [list readelf -A pr21375${rdesuf}.gd] \ - [list readelf --dyn-syms pr21375${rdesuf}${irixsuf}.sd] \ + [list readelf {--dyn-syms --wide} pr21375${rdesuf}${irixsuf}.sd] \ [list readelf -h pr21375${abisuf}.hd]] \ "pr21375${binsuf}${dsosuf}"]] } |