From 86333705ae268aa00da41b094b0d632eae31e9ae Mon Sep 17 00:00:00 2001 From: Faraz Shahbazker Date: Mon, 15 Apr 2019 08:48:42 -0700 Subject: [PATCH] Skip print-map-discarded test for non-ELF targets ld/ * testsuite/ld-gc/gc.exp: Skip print-map-discarded test for non-ELF targets. --- ld/ChangeLog | 5 +++++ ld/testsuite/ld-gc/gc.exp | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) 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 + + * testsuite/ld-gc/gc.exp: Skip print-map-discarded test for non-ELF + targets. + 2019-04-15 Sudakshina Das * 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" +} -- 2.7.4