aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2017-12-14 18:57:02 +1030
committerAlan Modra <amodra@gmail.com>2017-12-14 22:29:42 +1030
commit4baeffab22b564735be14a90f658c1aee1ceec58 (patch)
tree0f8269804a52e894592741ae6e509a75443a3b08 /binutils
parent8af5c486ea6153bb84b9257def4e5faa4bc72421 (diff)
downloadfsf-binutils-gdb-4baeffab22b564735be14a90f658c1aee1ceec58.zip
fsf-binutils-gdb-4baeffab22b564735be14a90f658c1aee1ceec58.tar.gz
fsf-binutils-gdb-4baeffab22b564735be14a90f658c1aee1ceec58.tar.bz2
binutils nm testsuite tidy
We can run the gnu_unique_object symbol test on all ELF targets. Those that don't support the symbol type and fail to assemble can just be resolved as "unsupported". This means binutils_assemble can't report an error on assembly failure, but it probably should never have done that anyway. * testsuite/lib/utils-lib.exp (default_binutils_assemble_flags): Don't perror on assembler diagnostic output. * testsuite/binutils-all/nm.exp: Run unique symbol test on all ELF targets. Resolve as "unsupported" on assembly failure.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog7
-rw-r--r--binutils/testsuite/binutils-all/nm.exp41
-rw-r--r--binutils/testsuite/lib/utils-lib.exp1
3 files changed, 23 insertions, 26 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index f820280..eb596d1 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,10 @@
+2017-12-14 Alan Modra <amodra@gmail.com>
+
+ * testsuite/lib/utils-lib.exp (default_binutils_assemble_flags):
+ Don't perror on assembler diagnostic output.
+ * testsuite/binutils-all/nm.exp: Run unique symbol test on all
+ ELF targets. Resolve as "unsupported" on assembly failure.
+
2017-12-11 Renlin Li <renlin.li@arm.com>
* testsuite/binutils-all/aarch64/objdump.d: New.
diff --git a/binutils/testsuite/binutils-all/nm.exp b/binutils/testsuite/binutils-all/nm.exp
index fdcf194..e60e061 100644
--- a/binutils/testsuite/binutils-all/nm.exp
+++ b/binutils/testsuite/binutils-all/nm.exp
@@ -101,36 +101,27 @@ if {![info exists vars(text_symbol)] \
if [is_elf_format] {
# PR binutils/12753
# Test nm -g on a unique global symbol.
+ if {![binutils_assemble $srcdir/$subdir/unique.s tmpdir/unique.o]} then {
+ unsupported "nm -g on unique symbols"
+ } else {
+ if [is_remote host] {
+ set tmpfile [remote_download host tmpdir/unique.o]
+ } else {
+ set tmpfile tmpdir/unique.o
+ }
- # Only some targets support unique symbols.
- if {([istarget "i?86-*-*"]
- || [istarget "x86_64-*-*"]
- || [istarget "arm-*-*"]
- || [istarget "powerpc*-*-*"]
- || [istarget "sparc*-*-*"])} then {
+ set got [binutils_run $NM "$NMFLAGS -g $tmpfile"]
- if {![binutils_assemble $srcdir/$subdir/unique.s tmpdir/unique.o]} then {
- fail "nm -g on unique symbols (assembling)"
+ if [regexp "u foo" $got] then {
+ pass "nm -g on unique symbols"
} else {
- if [is_remote host] {
- set tmpfile [remote_download host tmpdir/unique.o]
- } else {
- set tmpfile tmpdir/unique.o
- }
-
- set got [binutils_run $NM "$NMFLAGS -g $tmpfile"]
-
- if [regexp "u foo" $got] then {
- pass "nm -g on unique symbols"
- } else {
- fail "nm -g on unique symbols"
- }
+ fail "nm -g on unique symbols"
+ }
- if { $verbose < 1 } {
- remote_file host delete "tmpdir/unique.o"
- }
+ if { $verbose < 1 } {
+ remote_file host delete "tmpdir/unique.o"
}
- }
+ }
}
# Test nm -P
diff --git a/binutils/testsuite/lib/utils-lib.exp b/binutils/testsuite/lib/utils-lib.exp
index 40fd98b..5efe702 100644
--- a/binutils/testsuite/lib/utils-lib.exp
+++ b/binutils/testsuite/lib/utils-lib.exp
@@ -127,7 +127,6 @@ proc default_binutils_assemble_flags { source object asflags } {
} else {
send_log "$exec_output\n"
verbose "$exec_output"
- perror "$source: assembly failed"
return 0
}
}