404333fb8c2530f9eac25ce2f2c11e4207bd07cc
[deliverable/binutils-gdb.git] / ld / testsuite / ld-scripts / defined.exp
1 # Test DEFINED in a linker script.
2 # By Ian Lance Taylor, Cygnus Support.
3 # Copyright (C) 2001-2020 Free Software Foundation, Inc.
4 #
5 # This file is part of the GNU Binutils.
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
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.
16 #
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
19 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 # MA 02110-1301, USA.
21
22 set testname "DEFINED"
23 set prms_id 5699
24
25 if ![ld_assemble $as $srcdir/$subdir/defined.s tmpdir/def.o] {
26 unresolved $testname
27 return
28 }
29
30 set saved_LDFLAGS "$LDFLAGS"
31 if [istarget "x86_64-*-mingw*"] then {
32 set LDFLAGS "$LDFLAGS --image-base 0"
33 }
34
35 if ![ld_link $ld tmpdir/def "$LDFLAGS -T $srcdir/$subdir/defined.t tmpdir/def.o"] {
36 fail $testname
37 } else {
38 if ![ld_nm $nm "" tmpdir/def] {
39 unresolved $testname
40 } else {
41 if {![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 } else {
47 if {$nm_output(value1) != 1} {
48 send_log "value1 == $nm_output(value1)\n"
49 verbose "value1 == $nm_output(value1)"
50 fail $testname
51 } else {
52 if {$nm_output(value2) != 2} {
53 send_log "value2 == $nm_output(value2)\n"
54 verbose "value2 == $nm_output(value2)"
55 fail $testname
56 } else {
57 pass $testname
58 }
59 }
60 }
61 }
62 }
63
64 set saved_ASFLAGS "$ASFLAGS"
65 if { [is_elf_format] \
66 && ([istarget "i?86-*-*"] || [istarget "x86_64-*-*"]) } {
67 set ASFLAGS "$ASFLAGS -mx86-used-note=no"
68 }
69
70 set prms_id 0
71 run_dump_test "defined2"
72 run_dump_test "defined3"
73 run_dump_test "defined4"
74 if ![is_aout_format] {
75 run_dump_test "defined5"
76 }
77 if [is_elf_format] {
78 run_dump_test "defined6"
79 }
80 run_dump_test "pr24008"
81 set LDFLAGS "$saved_LDFLAGS"
82 set ASFLAGS "$saved_ASFLAGS"
This page took 0.041698 seconds and 3 git commands to generate.