]>
Commit | Line | Data |
---|---|---|
1c4f3780 | 1 | # Expect script for ld-or1k tests |
250d07de | 2 | # Copyright (C) 2015-2021 Free Software Foundation, Inc. |
1c4f3780 RH |
3 | # |
4 | # This file is part of the GNU Binutils. | |
5 | # | |
6 | # This program is free software; you can redistribute it and/or modify | |
7 | # it under the terms of the GNU General Public License as published by | |
8 | # the Free Software Foundation; either version 3 of the License, or | |
9 | # (at your option) any later version. | |
10 | # | |
11 | # This program is distributed in the hope that it will be useful, | |
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | # GNU General Public License for more details. | |
15 | # | |
16 | # You should have received a copy of the GNU General Public License | |
17 | # along with this program; if not, write to the Free Software | |
18 | # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, | |
19 | # MA 02110-1301, USA. | |
20 | # | |
21 | ||
22 | if { ![istarget "or1k*-*-*"] } { | |
23 | return | |
24 | } | |
25 | ||
26 | # List contains test-items with 3 items followed by 2 lists: | |
27 | # 0:name 1:ld early options 2:ld late options 3:assembler options | |
28 | # 4:filenames of assembler files 5: action and options. 6: name of output file | |
29 | ||
30 | # Actions: | |
31 | # objdump: Apply objdump options on result. Compare with regex (last arg). | |
32 | # nm: Apply nm options on result. Compare with regex (last arg). | |
33 | # readelf: Apply readelf options on result. Compare with regex (last arg). | |
34 | ||
35 | set or1ktests { | |
36 | {"offsets1" "" "" "" {offsets1.s} | |
37 | {{objdump -drj.text offsets1.d}} | |
38 | "offsets1"} | |
39 | } | |
40 | ||
c8e98e36 SH |
41 | set or1kplttests { |
42 | {"PLTA -fpic -shared" "-fpic -shared" "" | |
43 | "" {plta1.s} | |
44 | {{objdump -dr plta1.dd}} | |
45 | "libplta1.so"} | |
46 | {"PLT -fpic -shared" "-fpic -shared" "" | |
47 | "" {plt1.s} | |
48 | {{objdump -dr plt1.dd}} | |
49 | "libplt1.so"} | |
50 | {"Helper shared library" "-fpic -shared" "" | |
51 | "" {pltlib.s} {} "libpltlib.so"} | |
52 | {"PLT -fno-pic exec -relax" "-relax tmpdir/libpltlib.so" "" | |
53 | "" {plt1.s} | |
54 | {{objdump -dr plt1.x.dd}} | |
55 | "plt1.x"} | |
56 | } | |
57 | ||
1c4f3780 RH |
58 | # Not implemented yet |
59 | # {"TLS -fpic -shared" "-shared -melf64alpha" "" | |
60 | # "" {align.s tlspic1.s tlspic2.s} | |
61 | # {{readelf -WSsrl tlspic.rd} {objdump -drj.text tlspic.dd} | |
62 | # {objdump -sj.got tlspic.sd} {objdump -sj.tdata tlspic.td}} | |
63 | # "libtlspic.so"} | |
64 | # {"Helper shared library" "-shared -melf64alpha" "" | |
65 | # "" {tlslib.s} {} "libtlslib.so"} | |
66 | # {"TLS -fpic and -fno-pic exec" | |
67 | # "-melf64alpha tmpdir/libtlslib.so" "" "" {align.s tlsbinpic.s tlsbin.s} | |
68 | # {{readelf -WSsrl tlsbin.rd} {objdump -drj.text tlsbin.dd} | |
69 | # {objdump -sj.got tlsbin.sd} {objdump -sj.tdata tlsbin.td}} | |
70 | # "tlsbin"} | |
71 | # {"TLS -fpic and -fno-pic exec -relax" | |
72 | # "-relax -melf64alpha tmpdir/libtlslib.so" "" | |
73 | # "" {align.s tlsbinpic.s tlsbin.s} | |
74 | # {{readelf -WSsrl tlsbinr.rd} {objdump -drj.text tlsbinr.dd} | |
75 | # {objdump -sj.got tlsbinr.sd}} | |
76 | # "tlsbinr"} | |
77 | # {"empty got" | |
78 | # "-melf64alpha" "" "" | |
79 | # {emptygot.s} | |
80 | # {{nm "-n" emptygot.nm}} | |
81 | # "emptygot"} | |
82 | # {"TLS in debug sections" "-melf64alpha" "" | |
83 | # "" {tlsg.s} | |
84 | # {{objdump -sj.debug_foobar tlsg.sd}} "tlsg"} | |
85 | ||
c8e98e36 | 86 | # Shared objects not supported on newlib |
1c4f3780 | 87 | run_ld_link_tests $or1ktests |
c8e98e36 SH |
88 | if { ![istarget "or1k*-*-elf*"] } { |
89 | run_ld_link_tests $or1kplttests | |
90 | return | |
91 | } |