From: Nick Clifton Date: Mon, 1 Nov 1999 16:29:06 +0000 (+0000) Subject: Fixed test to disable these checks if the target is PE based. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;ds=sidebyside;h=197d87f8ece97740f74bc58042bd1d5ff1dd6860;p=deliverable%2Fbinutils-gdb.git Fixed test to disable these checks if the target is PE based. --- diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index f2060e4208..5e78e84b08 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,8 @@ +1999-11-01 Nick Clifton + + * ld-selective/selective.exp: Fix test to disable these checks for + PE based targets. + 1999-10-29 Catherine Moore * ld-selective/selective.exp: Remove test6. diff --git a/ld/testsuite/ld-selective/selective.exp b/ld/testsuite/ld-selective/selective.exp index c8bbdefedc..4ab5872be2 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 }