]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - ld/testsuite/ld-checks/checks.exp
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / ld / testsuite / ld-checks / checks.exp
CommitLineData
252b5132 1# Expect script for LD section checks tests
250d07de 2# Copyright (C) 1999-2021 Free Software Foundation, Inc.
252b5132 3#
f96b4a7b
NC
4# This file is part of the GNU Binutils.
5#
6# This program is free software; you can redistribute it and/or modify
252b5132 7# it under the terms of the GNU General Public License as published by
f96b4a7b 8# the Free Software Foundation; either version 3 of the License, or
252b5132 9# (at your option) any later version.
f96b4a7b 10#
252b5132
RH
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.
f96b4a7b 15#
252b5132
RH
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
f96b4a7b
NC
18# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19# MA 02110-1301, USA.
252b5132
RH
20#
21# Written by Nick Clifton (nickc@cygnus.com)
22
23proc section_check {} {
740341b9 24 global LDFLAGS
252b5132
RH
25 global as
26 global ld
27 global srcdir
28 global subdir
d8045f23 29
7193487f
AM
30 # The usage of .lcomm in asm.s is incompatible with ia64 and ppc xcoff.
31 if { [istarget ia64-*-*] || [is_xcoff_format] } {
ad995491
L
32 return
33 }
197a7bfd 34 set test "check sections 1"
d8045f23 35
740341b9 36 set ldflags "$LDFLAGS --check-sections -e foo"
252b5132
RH
37
38 if { ![ld_assemble $as $srcdir/$subdir/asm.s tmpdir/asm.o]} {
39 unresolved $test
40 return
41 }
42
d9816402 43 if ![ld_link $ld tmpdir/asm.x "$ldflags tmpdir/asm.o"] {
197a7bfd 44 fail $test
252b5132
RH
45 } else {
46 pass $test
47 }
48
197a7bfd
ILT
49 set test "check sections 2"
50
252b5132
RH
51 # Change the linker flags so that our "buggy" linker
52 # script is used.
740341b9 53 set ldflags "$LDFLAGS --check-sections -T $srcdir/$subdir/script -e foo"
252b5132 54
d9816402 55 # Perform the equivalent of invoking ld_link
d8045f23
NC
56 # except that we need to massage the output further.
57
7f6a71ff 58 set exec_output [run_host_cmd "$ld" "-o tmpdir/asm.x $ldflags tmpdir/asm.o"]
252b5132
RH
59 set exec_output [prune_warnings $exec_output]
60
61 # Make sure that we got some output from the linker
62 if [string match "" $exec_output] then {
197a7bfd 63 fail $test
d8045f23 64 }
252b5132
RH
65
66 # Now remove our expected error message
67 regsub -all ".*: section .data .* overlaps section .text .*" $exec_output "" exec_output
68
69 # And check to see if anything else, (unexpected) was left
70 if [string match "" $exec_output] then {
71 pass $test
72 } else {
73 verbose -log "Unexpected linker message(s): $exec_output"
197a7bfd 74 fail $test
252b5132
RH
75 }
76}
77
d40e34db
TG
78proc overflow_check {} {
79 # Test only on some 32-bit targets that are often tested
80 if { ![istarget i?86-*-*]
81 && ![istarget powerpc-*-*]
82 && ![istarget arm*-*-*] } {
83 return
84 }
9494d963
TG
85 if ![is_elf_format] {
86 return
87 }
d40e34db
TG
88
89 run_dump_test "over"
90 run_dump_test "over2"
91}
92
252b5132 93section_check
d40e34db 94overflow_check