This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Skip print-map-discarded test for non-ELF targets


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=86333705ae268aa00da41b094b0d632eae31e9ae

commit 86333705ae268aa00da41b094b0d632eae31e9ae
Author: Faraz Shahbazker <fshahbazker@wavecomp.com>
Date:   Mon Apr 15 08:48:42 2019 -0700

    Skip print-map-discarded test for non-ELF targets
    
    ld/
    	* testsuite/ld-gc/gc.exp: Skip print-map-discarded test
    	for non-ELF targets.

Diff:
---
 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  <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"
+}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]