2003-09-30 H.J. Lu <hongjiu.lu@intel.com>
[binutils.git] / ld / testsuite / ld-checks / checks.exp
blob66bf08bca60c49b5c9cd558850f0b3e8a8d92ea2
1 # Expect script for LD section checks tests
2 # Copyright 1999, 2001 Free Software Foundation, Inc.
4 # This file is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 # Written by Nick Clifton (nickc@cygnus.com)
20 proc section_check {} {
21 global ld_flags
22 global as
23 global ld
24 global srcdir
25 global subdir
27 # The usage of .lcomm in asm.s is incompatible with ia64 and ppc coff.
28 if { [istarget ia64-*-elf*] || [istarget ia64-*-*]
29 || [istarget powerpc*-*-aix*] || [istarget powerpc-*-beos*]
30 || [istarget rs6000-*-*] } {
31 return
33 set test "check sections 1"
35 set ldflags "--check-sections"
37 if { ![ld_assemble $as $srcdir/$subdir/asm.s tmpdir/asm.o]} {
38 unresolved $test
39 return
42 if ![ld_simple_link $ld tmpdir/asm.x "$ldflags tmpdir/asm.o"] {
43 fail $test
44 } else {
45 pass $test
48 set test "check sections 2"
50 # Change the linker flags so that our "buggy" linker
51 # script is used.
52 set ldflags "--check-sections -T $srcdir/$subdir/script -e foo"
54 # Perform the equivalent of invoking ld_simple_link
55 # except that we need to massage the output futher.
57 catch "exec $ld -o tmpdir/asm.x $ldflags tmpdir/asm.o" exec_output
58 set exec_output [prune_warnings $exec_output]
60 # Make sure that we got some output from the linker
61 if [string match "" $exec_output] then {
62 fail $test
65 # Now remove our expected error message
66 regsub -all ".*: section .data .* overlaps section .text .*" $exec_output "" exec_output
68 # And check to see if anything else, (unexpected) was left
69 if [string match "" $exec_output] then {
70 pass $test
71 } else {
72 verbose -log "Unexpected linker message(s): $exec_output"
73 fail $test
77 section_check