Missing ChangeLog entry from commit 60ef20e28534cf093d5bd799b3830c68381bb27f.
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / weak.exp
CommitLineData
252b5132
RH
1# Test weak symbols.
2# By Ian Lance Taylor, Cygnus Solutions.
c9eaa05f 3# Copyright 1999, 2000, 2002, 2004, 2005, 2006, 2007, 2009, 2011
a2b64bed
NC
4# Free Software Foundation, Inc.
5#
f96b4a7b
NC
6# This file is part of the GNU Binutils.
7#
8# This program is free software; you can redistribute it and/or modify
a2b64bed 9# it under the terms of the GNU General Public License as published by
f96b4a7b 10# the Free Software Foundation; either version 3 of the License, or
a2b64bed 11# (at your option) any later version.
f96b4a7b 12#
a2b64bed
NC
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
f96b4a7b 17#
a2b64bed
NC
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
f96b4a7b
NC
20# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21# MA 02110-1301, USA.
252b5132
RH
22
23set testname "weak symbols"
24
c9eaa05f 25# This test only works for ELF targets and some PE targets.
977cdf5a
NC
26# It ought to work for some a.out targets, but it doesn't.
27if {! [is_elf_format] && ! [is_pecoff_format]} {
28 unsupported $testname
252b5132
RH
29 return
30}
31
c9eaa05f
AM
32# Weak symbols are broken for most PE targets.
33if {! [istarget i?86-*-*] && ! [istarget sh-*-*]} {
977cdf5a
NC
34 setup_xfail *-*-pe*
35}
252b5132 36
48733062
AM
37# hppa64 and or32 are incredibly broken
38setup_xfail hppa64-*-* or32-*-*
39
252b5132
RH
40if {! [ld_assemble $as $srcdir/$subdir/weak1.s tmpdir/weak1.o]
41 || ! [ld_assemble $as $srcdir/$subdir/weak2.s tmpdir/weak2.o]} then {
42 # It's OK if .weak doesn't work on this target.
43 unresolved $testname
44 return
45}
46
99ad8390
NC
47global LDFLAGS
48set saved_LDFLAGS "$LDFLAGS"
42037fe5 49if [istarget "x86_64-*-mingw*"] then {
99ad8390
NC
50 set LDFLAGS "$LDFLAGS --image-base 0"
51}
52
252b5132
RH
53set weak_regexp_big \
54".*Contents of section .text:.*1000 00001008 0000200c 12121212 34343434.*Contents of section .data:.*2000 00001008 0000200c 56565656 78787878.*"
55
56set weak_regexp_little \
57".*Contents of section .text:.*1000 08100000 0c200000 12121212 34343434.*Contents of section .data:.*2000 08100000 0c200000 56565656 78787878.*"
58
36a3dc51 59if {! [ld_simple_link $ld tmpdir/weak "$flags -T $srcdir/$subdir/weak.t tmpdir/weak1.o tmpdir/weak2.o"] } then {
252b5132
RH
60 fail $testname
61} else {
7f6a71ff 62 if {![is_remote host] && [which $objdump] == 0} then {
252b5132 63 unresolved $testname
99ad8390 64 set LDFLAGS "$saved_LDFLAGS"
252b5132
RH
65 return
66 }
67
7f6a71ff 68 set exec_output [run_host_cmd "$objdump" "-s tmpdir/weak"]
252b5132
RH
69 set exec_output [prune_warnings $exec_output]
70 verbose -log $exec_output
71
72 if {[regexp $weak_regexp_big $exec_output] \
73 || [regexp $weak_regexp_little $exec_output] } then {
74 pass $testname
75 } else {
76 fail $testname
77 }
78}
99ad8390
NC
79
80set LDFLAGS "$saved_LDFLAGS"
This page took 0.591602 seconds and 4 git commands to generate.