diff options
author | Chenghua Xu <paul.hua.gm@gmail.com> | 2018-08-29 17:12:44 +0800 |
---|---|---|
committer | Chenghua Xu <paul.hua.gm@gmail.com> | 2018-08-29 17:12:44 +0800 |
commit | bc672693ccec6ef2faa057726b06e9515339bb74 (patch) | |
tree | bd3ab238b1bb0940a224bb0b5ae9380f849c1960 /ld | |
parent | 160fc977b6f33e5ef51f6c1f3cdcb57965c522c8 (diff) | |
download | gdb-bc672693ccec6ef2faa057726b06e9515339bb74.zip gdb-bc672693ccec6ef2faa057726b06e9515339bb74.tar.gz gdb-bc672693ccec6ef2faa057726b06e9515339bb74.tar.bz2 |
[MIPS/LD/testsuite] Skip o32 flags check on mips*-*-irix*
ld/ChangeLog:
* testsuite/ld-mips-elf/mips-elf-flags.exp (good_combination):
Skip o32 flags checking if target is mips*-*-irix*.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/testsuite/ld-mips-elf/mips-elf-flags.exp | 7 |
2 files changed, 11 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 0cf02ab..e3eb4fb 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2018-08-29 Chenghua Xu <paul.hua.gm@gmail.com> + + * testsuite/ld-mips-elf/mips-elf-flags.exp (good_combination): + Skip o32 flags checking if target is mips*-*-irix*. + 2018-08-27 H.J. Lu <hongjiu.lu@intel.com> * testsuite/ld-i386/i386.exp: Run property-x86-5. diff --git a/ld/testsuite/ld-mips-elf/mips-elf-flags.exp b/ld/testsuite/ld-mips-elf/mips-elf-flags.exp index de97939..0a4bdf1 100644 --- a/ld/testsuite/ld-mips-elf/mips-elf-flags.exp +++ b/ld/testsuite/ld-mips-elf/mips-elf-flags.exp @@ -127,7 +127,12 @@ proc good_combination {arglist flags args} { foreach flag $flags { if {[lsearch -exact $gotflags $flag] < 0} { - set failed 1 + # The mips*-*-irix* not use o32 flags. + if {[istarget mips*-*-irix*] && $flag == "o32"} { + set failed 0 + } else { + set failed 1 + } } } |