]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/testsuite/ld-scripts/defined.exp
Skip ld/pr23169 on SPARC.
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-scripts / defined.exp
CommitLineData
252b5132
RH
1# Test DEFINED in a linker script.
2# By Ian Lance Taylor, Cygnus Support.
82704155 3# Copyright (C) 2001-2019 Free Software Foundation, Inc.
a2b64bed 4#
f96b4a7b
NC
5# This file is part of the GNU Binutils.
6#
7# This program is free software; you can redistribute it and/or modify
a2b64bed 8# it under the terms of the GNU General Public License as published by
f96b4a7b 9# the Free Software Foundation; either version 3 of the License, or
a2b64bed 10# (at your option) any later version.
f96b4a7b 11#
a2b64bed
NC
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
f96b4a7b 16#
a2b64bed
NC
17# You should have received a copy of the GNU General Public License
18# along with this program; if not, write to the Free Software
f96b4a7b
NC
19# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20# MA 02110-1301, USA.
252b5132
RH
21
22set testname "DEFINED"
23set prms_id 5699
24
25if ![ld_assemble $as $srcdir/$subdir/defined.s tmpdir/def.o] {
26 unresolved $testname
27 return
28}
29
99ad8390
NC
30global LDFLAGS
31set saved_LDFLAGS "$LDFLAGS"
42037fe5 32if [istarget "x86_64-*-mingw*"] then {
99ad8390
NC
33 set LDFLAGS "$LDFLAGS --image-base 0"
34}
35
d9816402 36if ![ld_link $ld tmpdir/def "$LDFLAGS -T $srcdir/$subdir/defined.t tmpdir/def.o"] {
252b5132
RH
37 fail $testname
38} else {
992c450d 39 if ![ld_nm $nm "" tmpdir/def] {
252b5132
RH
40 unresolved $testname
41 } else {
42 if {![info exists nm_output(value1)] \
43 || ![info exists nm_output(value2)]} {
44 send_log "bad output from nm\n"
45 verbose "bad output from nm"
46 fail $testname
47 } else {
48 if {$nm_output(value1) != 1} {
49 send_log "value1 == $nm_output(value1)\n"
50 verbose "value1 == $nm_output(value1)"
51 fail $testname
52 } else {
53 if {$nm_output(value2) != 2} {
54 send_log "value2 == $nm_output(value2)\n"
55 verbose "value2 == $nm_output(value2)"
56 fail $testname
57 } else {
58 pass $testname
59 }
60 }
61 }
62 }
63}
b8fe28d4 64
e9d644e8
L
65global ASFLAGS
66set saved_ASFLAGS "$ASFLAGS"
67if { [is_elf_format] \
68 && ([istarget "i?86-*-*"] || [istarget "x86_64-*-*"]) } {
69 set ASFLAGS "$ASFLAGS -mx86-used-note=no"
70}
71
b8fe28d4
HPN
72set prms_id 0
73run_dump_test "defined2"
8e919164 74run_dump_test "defined3"
abd4c01a 75run_dump_test "defined4"
ea6c5ce9
AM
76if ![is_aout_format] {
77 run_dump_test "defined5"
78}
931804de
AM
79if [is_elf_format] {
80 run_dump_test "defined6"
81}
99ad8390 82set LDFLAGS "$saved_LDFLAGS"
e9d644e8 83set ASFLAGS "$saved_ASFLAGS"