diff options
author | Maciej W. Rozycki <macro@mips.com> | 2018-07-05 19:44:02 +0100 |
---|---|---|
committer | Maciej W. Rozycki <macro@mips.com> | 2018-07-05 19:44:02 +0100 |
commit | a5628fa8443f2182fcd799e03de31d1f8759df83 (patch) | |
tree | 98bc82c372107a0be30fceb23c345b21d508d3cc /ld/testsuite/ld-mips-elf/mips-elf.exp | |
parent | 56ad703d56ffe5dc55d5e719a6ec41fd6cf9bfbe (diff) | |
download | gdb-a5628fa8443f2182fcd799e03de31d1f8759df83.zip gdb-a5628fa8443f2182fcd799e03de31d1f8759df83.tar.gz gdb-a5628fa8443f2182fcd799e03de31d1f8759df83.tar.bz2 |
MIPS/LD/testsuite: Use $linux_gnu consistently across `mips-elf.exp'
Replace two remaining spelled-out calls to `[istarget mips*-*-linux*]'
in `mips-elf.exp' with $linux_gnu, which is equivalent.
ld/
* testsuite/ld-mips-elf/mips-elf.exp: Replace remaining calls to
`[istarget mips*-*-linux*]' with $linux_gnu.
Diffstat (limited to 'ld/testsuite/ld-mips-elf/mips-elf.exp')
-rw-r--r-- | ld/testsuite/ld-mips-elf/mips-elf.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/testsuite/ld-mips-elf/mips-elf.exp b/ld/testsuite/ld-mips-elf/mips-elf.exp index 1a54662..ddd90f2 100644 --- a/ld/testsuite/ld-mips-elf/mips-elf.exp +++ b/ld/testsuite/ld-mips-elf/mips-elf.exp @@ -781,7 +781,7 @@ run_dump_test "hash1a" run_dump_test "hash1b" run_dump_test "hash1c" -if {[istarget mips*-*-linux*]} { +if { $linux_gnu } { # The number of symbols that are always included in the symbol table # for these tests. # the null symbol entry @@ -885,7 +885,7 @@ set mips_tls_tests { "tls-hidden4.so"} } -if {[istarget mips*-*-linux*]} { +if { $linux_gnu } { run_ld_link_tests $mips_tls_tests } |