]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ld/testsuite/ld-mips-elf/mips-elf.exp
* ld-mips-elf/elf-rel-got-n32.d,
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-mips-elf / mips-elf.exp
1 # Expect script for MIPS ELF linker tests
2 # Copyright 2002, 2003 Free Software Foundation, Inc.
3 #
4 # This file is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 #
18
19 if { [istarget mips*-*-*] } then {
20 set has_newabi [expr [istarget *-*-irix6*] || [istarget mips64*-*-linux*]]
21
22 set elf [expr [istarget mips*-*-elf] || [istarget mips*-*-linux*] || \
23 [istarget mips*-*-netbsd] || [istarget mips*-*-irix*]]
24 set linux_gnu [expr [istarget mips*-*-linux*]]
25 set embedded_elf [expr [istarget mips*-*-elf]]
26
27
28 if { $elf } {
29 # Check MIPS16 markings being passed through link.
30 run_dump_test "mips16-1"
31
32 # MIPS branch offset final link checking.
33 run_dump_test "branch-misc-1"
34
35 # Test multi-got link.
36 run_dump_test "multi-got-1"
37
38 if $has_newabi {
39 run_dump_test "elf-rel-got-n32"
40 run_dump_test "elf-rel-xgot-n32"
41 run_dump_test "elf-rel-got-n64"
42 run_dump_test "elf-rel-xgot-n64"
43
44 run_dump_test "relax-jalr-n32"
45 run_dump_test "relax-jalr-n32-shared"
46 run_dump_test "relax-jalr-n64"
47 run_dump_test "relax-jalr-n64-shared"
48 }
49 }
50
51 if { $linux_gnu } {
52 run_dump_test "rel32-o32"
53 run_dump_test "rel32-n32"
54 run_dump_test "rel64"
55 }
56
57
58 if { $embedded_elf } {
59 # Check basic Embedded-PIC PC-relative HI/LO relocs.
60 run_dump_test "empic1-ln"
61 run_dump_test "empic1-lp"
62 run_dump_test "empic1-mn"
63 run_dump_test "empic1-mp"
64 run_dump_test "empic1-sn"
65 run_dump_test "empic1-sp"
66
67 # Embedded-PIC PC-relative HI/LO reloc edge-case regression tests.
68 # As of 2001-12-26, the linker botches the fwd-0 and rev-1 tests.
69 run_dump_test "empic2-fwd-0"
70 run_dump_test "empic2-fwd-1"
71 run_dump_test "empic2-rev-0"
72 run_dump_test "empic2-rev-1"
73
74 # Check generation of embedded relocs section.
75 run_dump_test "emrelocs-eb"
76 run_dump_test "emrelocs-el"
77
78 run_dump_test "region1"
79 }
80 }