diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2004-01-09 21:19:15 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2004-01-09 21:19:15 +0000 |
commit | 0fb33ef4f8e2e9abd87ac48a8935cfc3b7f29cba (patch) | |
tree | 588a37379514c62d39bda298a47205150f1bfdb5 /ld | |
parent | 1e4728e7bc449acd2c01d4746ec8906aa6abfef7 (diff) | |
download | gdb-0fb33ef4f8e2e9abd87ac48a8935cfc3b7f29cba.zip gdb-0fb33ef4f8e2e9abd87ac48a8935cfc3b7f29cba.tar.gz gdb-0fb33ef4f8e2e9abd87ac48a8935cfc3b7f29cba.tar.bz2 |
2004-01-09 H.J. Lu <hongjiu.lu@intel.com>
* ld-selective/selective.exp: Skip ia64-*-*.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | ld/testsuite/ld-selective/selective.exp | 7 |
2 files changed, 10 insertions, 1 deletions
diff --git a/ld/testsuite/ChangeLog b/ld/testsuite/ChangeLog index 98b6de4..55ad523 100644 --- a/ld/testsuite/ChangeLog +++ b/ld/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2004-01-09 H.J. Lu <hongjiu.lu@intel.com> + + * ld-selective/selective.exp: Skip ia64-*-*. + 2004-01-09 Daniel Jacobowitz <drow@mvista.com> * ld-arm/arm-lib.d, ld-arm/arm-lib.r: Update for R_ARM_PLT32 diff --git a/ld/testsuite/ld-selective/selective.exp b/ld/testsuite/ld-selective/selective.exp index a8f1326..ba1ebd9 100644 --- a/ld/testsuite/ld-selective/selective.exp +++ b/ld/testsuite/ld-selective/selective.exp @@ -23,6 +23,11 @@ if ![is_elf_format] { return } +# IA64 does not support selective linking +if {[istarget "ia64-*-*"]} { + return +} + # List contains test-items with three items followed by four lists: # 1:name 2:test-type (CC or C++; add as needed) 3:filename 4:ld-flags # 5:must-have-symbols 6:must-not-have-symbols 7:xfail-targets. @@ -79,7 +84,7 @@ foreach testitem $seltests { setup_xfail $xfail_target } setup_xfail "alpha*-*" "arc*-*" "d30v*-*" "dlx*-*" "i370*-*" "i860*-*" - setup_xfail "i960*-*" "ia64*-*" "mn10200-*" "or32-*" "pj-*" "sparc64*-*" + setup_xfail "i960*-*" "mn10200-*" "or32-*" "pj-*" "sparc64*-*" # It's either C or C++ at the moment. if { $testtype == "C++" } { |