1 # Expect script
for common symbol tests
2 # Copyright
2003, 2005, 2006, 2007 Free Software Foundation
, Inc.
4 # This file is part of the GNU Binutils.
6 # This
program is free software
; you can redistribute it and
/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation
; either version
3 of the License
, or
9 #
(at your option
) any later version.
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.
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
18 # Foundation
, Inc.
, 51 Franklin Street
- Fifth Floor
, Boston
,
21 # Written by H.J. Lu
(hjl@gnu.org
)
24 # Make sure that
ld correctly handles common symbols in ELF.
26 # This test can only be run
on ELF platforms.
31 set test1
"size/aligment change of common symbols"
32 set test1w1
"$test1 (warning 1)"
33 set test1w2
"$test1 (warning 2)"
34 set test1c1
"$test1 (change 1)"
35 set test1c2
"$test1 (change 2)"
37 if { [which $CC
] == 0 } {
44 if { [istarget score
-*-*] } {
52 proc dump_common1
{ testname
} {
56 send_log
"$READELF -s tmpdir/common1.o | grep foo\n"
57 catch
"exec $READELF -s tmpdir/common1.o | grep foo" exec_output
58 if { ![regexp
"(\[ \]*)(\[0-9\]+):(\[ \]*)(\[0\]*)80(\[ \]+)4(\[ \]+)OBJECT(\[ \]+)GLOBAL(\[ \]+)DEFAULT(\[ \]+)(PRC\\\[0xff03\\\]|COM|SCOM)(\[ \]+)_?foo2" $exec_output]
59 ||
![regexp
"(\[ \]*)(\[0-9\]+):(\[ \]*)(\[0-9\]+)(\[ \]+)21(\[ \]+)OBJECT(\[ \]+)GLOBAL(\[ \]+)DEFAULT(\[ \]+)(\[0-9\]+)(\[ \]+)_?foo1" $exec_output] } {
60 send_log
"$exec_output\n"
69 if { ![ld_compile
"$CC $CFLAGS" $srcdir/$subdir/common1a.c tmpdir/common1a.o]
70 ||
![ld_compile
"$CC $CFLAGS" $srcdir/$subdir/common1b.c tmpdir/common1b.o] } {
78 if { [ld_simple_link $
ld tmpdir
/common1.o
"-r tmpdir/common1a.o tmpdir/common1b.o"] } {
83 # This test fails
on MIPS because the backend sets type_change_ok.
84 # The size change warning is suppressed.
85 if {[istarget mips
*-*-*]} {
86 if { ![regexp
"Warning: alignment (\[0-9\]+) of symbol \`_?foo1\' in tmpdir/common1b.o is smaller than 64 in tmpdir/common1a.o" $link_output] } {
93 if { ![regexp
"Warning: alignment (\[0-9\]+) of symbol \`_?foo1\' in tmpdir/common1b.o is smaller than 64 in tmpdir/common1a.o" $link_output]
94 ||
![regexp
"Warning: size of symbol \`_?foo1\' changed from 2 in tmpdir/common1a.o to 21 in tmpdir/common1b.o" $link_output] } {
101 if { [dump_common1 $test1c1
] } {
105 if { [ld_simple_link $
ld tmpdir
/common1.o
"-r tmpdir/common1b.o tmpdir/common1a.o"] } {
110 if { ![regexp
"Warning: alignment (\[0-9\]+) of symbol \`_?foo1\' in tmpdir/common1b.o is smaller than 64 in tmpdir/common1a.o" $link_output] } {
116 if { [dump_common1 $test1c2
] } {