This commit was generated by cvs2svn to track changes on a CVS vendor
[binutils-gdb.git] / ld / testsuite / ld-scripts / script.exp
1 # Test basic linker script functionality
2 # By Ian Lance Taylor, Cygnus Support
3 # Copyright 2001
4 # Free Software Foundation, Inc.
5 #
6 # This file 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 2 of the License, or
9 # (at your option) any later version.
10 #
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.
15 #
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20 set testname "script"
21
22 if ![ld_assemble $as $srcdir/$subdir/script.s tmpdir/script.o] {
23 unresolved $testname
24 return
25 }
26
27 proc check_script { } {
28 global nm
29 global testname
30 global nm_output
31
32 if ![ld_nm $nm "" tmpdir/script] {
33 unresolved $testname
34 } else {
35 if {![info exists nm_output(text_start)] \
36 || ![info exists nm_output(text_end)] \
37 || ![info exists nm_output(data_start)] \
38 || ![info exists nm_output(data_end)]} {
39 send_log "bad output from nm\n"
40 verbose "bad output from nm"
41 fail $testname
42 } else {
43 set text_end 0x104
44 set data_end 0x1004
45 if [istarget *c54x*-*-*] then {
46 set text_end 0x102
47 set data_end 0x1002
48 }
49 if {$nm_output(text_start) != 0x100} {
50 send_log "text_start == $nm_output(text_start)\n"
51 verbose "text_start == $nm_output(text_start)"
52 fail $testname
53 } else { if {$nm_output(text_end) < $text_end \
54 || $nm_output(text_end) > 0x110} {
55 send_log "text_end == $nm_output(text_end)\n"
56 verbose "text_end == $nm_output(text_end)"
57 fail $testname
58 } else { if {$nm_output(data_start) != 0x1000} {
59 send_log "data_start == $nm_output(data_start)\n"
60 verbose "data_start == $nm_output(data_start)"
61 fail $testname
62 } else { if {$nm_output(data_end) < $data_end \
63 || $nm_output(data_end) > 0x1010} {
64 send_log "data_end == $nm_output(data_end)\n"
65 verbose "data_end == $nm_output(data_end)"
66 fail $testname
67 } else {
68 pass $testname
69 } } } }
70 }
71 }
72 }
73
74 # PE targets need to set the image base to 0 to avoid complications from nm.
75 set flags ""
76 if {[istarget "*-*-pe*"] \
77 || [istarget "*-*-cygwin*"] \
78 || [istarget "*-*-mingw32*"] \
79 || [istarget "*-*-winnt*"] \
80 || [istarget "*-*-nt*"] \
81 || [istarget "*-*-interix*"] } then {
82 set flags "--image-base 0"
83 }
84
85 if ![ld_simple_link $ld tmpdir/script "$flags -T $srcdir/$subdir/script.t tmpdir/script.o"] {
86 fail $testname
87 } else {
88 check_script
89 }
90
91 set testname "MRI script"
92
93 if ![ld_simple_link $ld tmpdir/script "$flags -c $srcdir/$subdir/scriptm.t"] {
94 fail $testname
95 } else {
96 check_script
97 }