diff options
author | Nick Clifton <nickc@redhat.com> | 1999-11-01 16:29:06 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1999-11-01 16:29:06 +0000 |
commit | 197d87f8ece97740f74bc58042bd1d5ff1dd6860 (patch) | |
tree | e2a76c7e2346d6f3557b9e271e7f5a86a4ba2bc2 /ld/testsuite/ld-selective | |
parent | 05d26f04bc73b40548d7a6d82ea96267560d6ae2 (diff) | |
download | gdb-197d87f8ece97740f74bc58042bd1d5ff1dd6860.zip gdb-197d87f8ece97740f74bc58042bd1d5ff1dd6860.tar.gz gdb-197d87f8ece97740f74bc58042bd1d5ff1dd6860.tar.bz2 |
Fixed test to disable these checks if the target is PE based.
Diffstat (limited to 'ld/testsuite/ld-selective')
-rw-r--r-- | ld/testsuite/ld-selective/selective.exp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ld/testsuite/ld-selective/selective.exp b/ld/testsuite/ld-selective/selective.exp index c8bbdef..4ab5872 100644 --- a/ld/testsuite/ld-selective/selective.exp +++ b/ld/testsuite/ld-selective/selective.exp @@ -20,7 +20,10 @@ # COFF based ports do not support selective linking -if {[istarget "*-*-coff" "*-*-pe"]} { +if {[istarget "*-*-coff"]} { + return +} +if {[istarget "*-*-pe"]} { return } |