]> Git Repo - binutils.git/blob - ld/testsuite/ld-pe/pe.exp
Add support for COFF secidx relocations
[binutils.git] / ld / testsuite / ld-pe / pe.exp
1 # Expect script for simple PE tests that require the just-built binutils only.
2 #   Copyright (C) 2004-2022 Free Software Foundation, Inc.
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 {
36         {".secrel32" "--disable-reloc-section" "" "" {secrel1.s secrel2.s}
37          {{objdump -s secrel_64.d}} "secrel.x"}
38         {".secidx" "--disable-reloc-section" "" "" {secidx1.s secidx2.s}
39          {{objdump -s secidx_64.d}} "secidx.x"}
40         {"Empty export table" "" "" "" "exports.s"
41          {{objdump -p exports64.d}} "exports.dll"}
42         {"TLS directory entry" "" "" "" "tlssec.s"
43          {{objdump -p tlssec64.d}} "tlssec.dll"}
44       }
45     } elseif {[istarget i*86-*-cygwin*] } {
46       set pe_tests {
47         {".secrel32" "--disable-auto-import --disable-reloc-section" "" "" {secrel1.s secrel2.s}
48          {{objdump -s secrel.d}} "secrel.x"}
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"}
60         {"Empty export table" "" "" "" "exports.s"
61          {{objdump -p exports.d}} "exports.dll"}
62         {"TLS directory entry" "" "" "" "tlssec.s"
63          {{objdump -p tlssec32.d}} "tlssec.dll"}
64       }
65     } else {
66       set pe_tests {
67         {".secrel32" "--disable-reloc-section" "" "" {secrel1.s secrel2.s}
68          {{objdump -s secrel.d}} "secrel.x"}
69         {".secidx" "--disable-reloc-section" "" "" {secidx1.s secidx2.s}
70          {{objdump -s secidx.d}} "secidx.x"}
71         {"Empty export table" "" "" "" "exports.s"
72          {{objdump -p exports.d}} "exports.dll"}
73         {"TLS directory entry" "" "" "" "tlssec.s"
74          {{objdump -p tlssec32.d}} "tlssec.dll"}
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"
92 run_dump_test "orphan_nu"
93
94 run_dump_test "reloc"
95
96 run_dump_test "weakdef-1"
97
98 run_dump_test "pr19803"
99 run_dump_test "pr26659-weak-undef-sym"
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
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
119 set foreign_sym_test {
120   {"non-C aligned common" "" "" "" {non-c-lang-syms.s}
121    {{nm -C non-c-lang-syms.d}} "non-c-lang-syms.x"}
122 }
123
124 # MCore rearranges symbol order.
125 setup_xfail mcore-*-pe
126 run_ld_link_tests $foreign_sym_test
This page took 0.030792 seconds and 4 git commands to generate.