]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/testsuite/ld-scripts/defined.exp
Update year range in copyright notice of binutils files
[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.
250d07de 3# Copyright (C) 2001-2021 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 30set saved_LDFLAGS "$LDFLAGS"
231b7382
AM
31if { [is_pecoff_format] } then {
32 set LDFLAGS "$LDFLAGS --image-base 0"
e553d5b2
AM
33} elseif { [is_xcoff_format] } then {
34 set LDFLAGS "$LDFLAGS -bnogc"
99ad8390
NC
35}
36
348fe36b
AM
37if { ![ld_link $ld tmpdir/def "$LDFLAGS -T $srcdir/$subdir/defined.t tmpdir/def.o"] } {
38 fail $testname
39} elseif { ![ld_nm $nm "" tmpdir/def] } {
40 fail $testname
41} elseif { ![info exists nm_output(value1)]
42 || ![info exists nm_output(value2)]} {
43 send_log "bad output from nm\n"
44 verbose "bad output from nm"
45 fail $testname
46} elseif {$nm_output(value1) != 1} {
47 send_log "value1 == $nm_output(value1)\n"
48 verbose "value1 == $nm_output(value1)"
49 fail $testname
50} elseif {$nm_output(value2) != 2} {
51 send_log "value2 == $nm_output(value2)\n"
52 verbose "value2 == $nm_output(value2)"
252b5132
RH
53 fail $testname
54} else {
348fe36b 55 pass $testname
252b5132 56}
b8fe28d4 57
e9d644e8
L
58set saved_ASFLAGS "$ASFLAGS"
59if { [is_elf_format] \
60 && ([istarget "i?86-*-*"] || [istarget "x86_64-*-*"]) } {
61 set ASFLAGS "$ASFLAGS -mx86-used-note=no"
62}
63
b8fe28d4
HPN
64set prms_id 0
65run_dump_test "defined2"
8e919164 66run_dump_test "defined3"
abd4c01a 67run_dump_test "defined4"
ea6c5ce9
AM
68if ![is_aout_format] {
69 run_dump_test "defined5"
70}
931804de
AM
71if [is_elf_format] {
72 run_dump_test "defined6"
73}
ad0f979c 74run_dump_test "pr24008"
99ad8390 75set LDFLAGS "$saved_LDFLAGS"
e9d644e8 76set ASFLAGS "$saved_ASFLAGS"