1 # Test that the linker reports undefined symbol line number correctly.
3 # Copyright
2007 Free Software Foundation
, Inc.
5 # This file is part of the GNU Binutils.
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.
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.
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
,
22 if { !([istarget
"ia64-*-elf*"]
23 ||
[istarget
"ia64-*-linux*"]) } {
27 set testline
"undefined line"
29 if ![ld_assemble $as
"-x $srcdir/$subdir/undefined.s" tmpdir/undefined.o] {
30 verbose
"Unable to assemble test file!" 1
35 remote_file host
delete "tmpdir/undefined"
37 # Using
-e start prevents the SunOS linker from trying to build a
39 send_log
"$ld -e start -o tmpdir/undefined tmpdir/undefined.o\n"
40 set exec_output
[run_host_cmd
"$ld" "-e start -o tmpdir/undefined tmpdir/undefined.o"]
42 send_log
"$exec_output\n"
43 verbose
"$exec_output"
45 proc checkund
{ string testname
} {
48 if [string match
"*$string*" $exec_output] {
55 set ml
"undefined.c:9: undefined reference to `*this_function_is_not_defined'"
57 checkund $ml $testline