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 | |
parent | 05d26f04bc73b40548d7a6d82ea96267560d6ae2 (diff) | |
download | fsf-binutils-gdb-197d87f8ece97740f74bc58042bd1d5ff1dd6860.zip fsf-binutils-gdb-197d87f8ece97740f74bc58042bd1d5ff1dd6860.tar.gz fsf-binutils-gdb-197d87f8ece97740f74bc58042bd1d5ff1dd6860.tar.bz2 |
Fixed test to disable these checks if the target is PE based.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | ld/testsuite/ld-selective/selective.exp | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index f2060e4..5e78e84b 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,8 @@ +1999-11-01 Nick Clifton <nickc@cygnus.com> + + * ld-selective/selective.exp: Fix test to disable these checks for + PE based targets. + 1999-10-29 Catherine Moore <clm@cygnus.com> * ld-selective/selective.exp: Remove test6. 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 } |