]>
Commit | Line | Data |
---|---|---|
c1711530 | 1 | # Expect script for simple PE tests that require the just-built binutils only. |
a2c58332 | 2 | # Copyright (C) 2004-2022 Free Software Foundation, Inc. |
d127ecce AM |
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 | # These tests can only be run on PE/COFF platforms. | |
23 | if {![is_pecoff_format]} { | |
24 | return | |
25 | } | |
26 | ||
27 | # This test can only be run on PE/COFF platforms that support .secrel32. | |
28 | if {[istarget i*86-*-cygwin*] | |
29 | || [istarget i*86-*-pe] | |
30 | || [istarget i*86-*-mingw*] | |
31 | || [istarget x86_64-*-mingw*] | |
32 | || [istarget arm-wince-pe] } { | |
33 | ||
34 | if {[istarget x86_64-*-mingw*] } { | |
35 | set pe_tests { | |
514b4e19 | 36 | {".secrel32" "--disable-reloc-section" "" "" {secrel1.s secrel2.s} |
177b81d6 | 37 | {{objdump -s secrel_64.d}} "secrel.x"} |
145667f8 MH |
38 | {".secidx" "--disable-reloc-section" "" "" {secidx1.s secidx2.s} |
39 | {{objdump -s secidx_64.d}} "secidx.x"} | |
897aea50 | 40 | {"Empty export table" "" "" "" "exports.s" |
177b81d6 | 41 | {{objdump -p exports64.d}} "exports.dll"} |
897aea50 | 42 | {"TLS directory entry" "" "" "" "tlssec.s" |
c91a930c | 43 | {{objdump -p tlssec64.d}} "tlssec.dll"} |
d127ecce AM |
44 | } |
45 | } elseif {[istarget i*86-*-cygwin*] } { | |
46 | set pe_tests { | |
514b4e19 | 47 | {".secrel32" "--disable-auto-import --disable-reloc-section" "" "" {secrel1.s secrel2.s} |
d127ecce | 48 | {{objdump -s secrel.d}} "secrel.x"} |
145667f8 MH |
49 | {".secidx" "--disable-auto-import --disable-reloc-section" "" "" {secidx1.s secidx2.s} |
50 | {{objdump -s secidx.d}} "secidx.x"} | |
51 | {"Empty export table" "" "" "" "exports.s" | |
52 | {{objdump -p exports.d}} "exports.dll"} | |
53 | {"TLS directory entry" "" "" "" "tlssec.s" | |
54 | {{objdump -p tlssec32.d}} "tlssec.dll"} | |
55 | } | |
56 | } elseif {[istarget arm-wince-pe] } { | |
57 | set pe_tests { | |
58 | {".secrel32" "--disable-reloc-section" "" "" {secrel1.s secrel2.s} | |
59 | {{objdump -s secrel.d}} "secrel.x"} | |
897aea50 | 60 | {"Empty export table" "" "" "" "exports.s" |
177b81d6 | 61 | {{objdump -p exports.d}} "exports.dll"} |
897aea50 | 62 | {"TLS directory entry" "" "" "" "tlssec.s" |
c91a930c | 63 | {{objdump -p tlssec32.d}} "tlssec.dll"} |
d127ecce AM |
64 | } |
65 | } else { | |
66 | set pe_tests { | |
514b4e19 | 67 | {".secrel32" "--disable-reloc-section" "" "" {secrel1.s secrel2.s} |
d127ecce | 68 | {{objdump -s secrel.d}} "secrel.x"} |
145667f8 MH |
69 | {".secidx" "--disable-reloc-section" "" "" {secidx1.s secidx2.s} |
70 | {{objdump -s secidx.d}} "secidx.x"} | |
897aea50 | 71 | {"Empty export table" "" "" "" "exports.s" |
177b81d6 | 72 | {{objdump -p exports.d}} "exports.dll"} |
897aea50 | 73 | {"TLS directory entry" "" "" "" "tlssec.s" |
c91a930c | 74 | {{objdump -p tlssec32.d}} "tlssec.dll"} |
d127ecce AM |
75 | } |
76 | } | |
77 | ||
78 | run_ld_link_tests $pe_tests | |
79 | } | |
80 | ||
81 | run_dump_test "image_size" | |
82 | run_dump_test "export_dynamic_warning" | |
83 | ||
84 | run_dump_test "longsecn" | |
85 | run_dump_test "longsecn-1" | |
86 | run_dump_test "longsecn-2" | |
87 | run_dump_test "longsecn-3" | |
88 | run_dump_test "longsecn-4" | |
89 | run_dump_test "longsecn-5" | |
90 | ||
91 | run_dump_test "orphan" | |
c51297b4 | 92 | run_dump_test "orphan_nu" |
05056a8d | 93 | |
6fa7408d JB |
94 | run_dump_test "reloc" |
95 | ||
1fd6d111 TG |
96 | run_dump_test "weakdef-1" |
97 | ||
41f46ed9 | 98 | run_dump_test "pr19803" |
74edb473 | 99 | run_dump_test "pr26659-weak-undef-sym" |
41f46ed9 SKS |
100 | set pr19803_dll { |
101 | { "PR 19803: not exporting swept symbols" | |
102 | "-shared --out-implib dx.dll --gc-sections" | |
103 | "" "" {pr19803.s} | |
104 | {{objdump "--syms dx.dll" pr19803.e}} | |
105 | "a.exe"} | |
106 | } | |
107 | # This test is *supposed* to fail. If the symbol defined in pr19803.e is | |
108 | # found then it was not stripped from the export dll, despite the fact that | |
109 | # it (should have been) garbage collected from the executable. | |
110 | setup_xfail *-*-* | |
111 | run_ld_link_tests $pr19803_dll | |
112 | ||
72b016b4 NC |
113 | if {[istarget x86_64-*-mingw*] } { |
114 | run_dump_test "cfi" | |
115 | } elseif {[istarget i*86-*-cygwin*] || [istarget i*86-*-mingw*] } { | |
116 | run_dump_test "cfi32" | |
117 | } | |
118 | ||
05056a8d | 119 | set foreign_sym_test { |
897aea50 | 120 | {"non-C aligned common" "" "" "" {non-c-lang-syms.s} |
05056a8d DK |
121 | {{nm -C non-c-lang-syms.d}} "non-c-lang-syms.x"} |
122 | } | |
123 | ||
1b857aee NC |
124 | # MCore rearranges symbol order. |
125 | setup_xfail mcore-*-pe | |
05056a8d | 126 | run_ld_link_tests $foreign_sym_test |