aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorFaraz Shahbazker <fshahbazker@wavecomp.com>2019-04-15 08:48:42 -0700
committerFaraz Shahbazker <fshahbazker@wavecomp.com>2019-04-15 08:48:42 -0700
commit86333705ae268aa00da41b094b0d632eae31e9ae (patch)
tree1d85ebefe8c3987a3e5aa20d7441aefed010c871 /ld
parent48574d91bf1289074f2c88b1f83aa3cd37d524d9 (diff)
downloadbinutils-86333705ae268aa00da41b094b0d632eae31e9ae.zip
binutils-86333705ae268aa00da41b094b0d632eae31e9ae.tar.gz
binutils-86333705ae268aa00da41b094b0d632eae31e9ae.tar.bz2
Skip print-map-discarded test for non-ELF targets
ld/ * testsuite/ld-gc/gc.exp: Skip print-map-discarded test for non-ELF targets.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog5
-rw-r--r--ld/testsuite/ld-gc/gc.exp4
2 files changed, 8 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 869d8e3..81dc36a 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,8 @@
+2019-04-15 Faraz Shahbazker <fshahbazker@wavecomp.com>
+
+ * testsuite/ld-gc/gc.exp: Skip print-map-discarded test for non-ELF
+ targets.
+
2019-04-15 Sudakshina Das <sudi.das@arm.com>
* testsuite/ld-arm/bfcsel.s: New.
diff --git a/ld/testsuite/ld-gc/gc.exp b/ld/testsuite/ld-gc/gc.exp
index 13968cc..422c3c3 100644
--- a/ld/testsuite/ld-gc/gc.exp
+++ b/ld/testsuite/ld-gc/gc.exp
@@ -172,4 +172,6 @@ if { [is_elf_format] && [check_shared_lib_support] \
run_dump_test "pr20306"
}
-run_dump_test "skip-map-discarded"
+if { [is_elf_format] } then {
+ run_dump_test "skip-map-discarded"
+}