1 |
38 |
julius |
# Expect script for binutils tests
|
2 |
|
|
# Copyright 2006, 2007 Free Software Foundation, Inc.
|
3 |
|
|
#
|
4 |
|
|
# This file is part of the GNU Binutils.
|
5 |
|
|
#
|
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.
|
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., 51 Franklin Street - Fifth Floor, Boston,
|
19 |
|
|
# MA 02110-1301, USA.
|
20 |
|
|
#
|
21 |
|
|
# Written by H.J. Lu (hongjiu.lu@intel.com)
|
22 |
|
|
#
|
23 |
|
|
|
24 |
|
|
# Make sure that binutils can correctly handle ld output in ELF.
|
25 |
|
|
|
26 |
|
|
# Run on Linux only.
|
27 |
|
|
if { ![istarget *-*-linux*] } {
|
28 |
|
|
return
|
29 |
|
|
}
|
30 |
|
|
|
31 |
|
|
if { [istarget *-*-linux*aout*]
|
32 |
|
|
|| [istarget *-*-linux*oldld*] } {
|
33 |
|
|
return
|
34 |
|
|
}
|
35 |
|
|
|
36 |
|
|
proc binutils_test { prog_name ld_options test } {
|
37 |
|
|
global as
|
38 |
|
|
global ld
|
39 |
|
|
global READELF
|
40 |
|
|
global objcopy
|
41 |
|
|
global strip
|
42 |
|
|
global srcdir
|
43 |
|
|
global subdir
|
44 |
|
|
global link_output
|
45 |
|
|
|
46 |
|
|
eval set prog \$$prog_name
|
47 |
|
|
set test_name "$prog_name $ld_options ($test)"
|
48 |
|
|
|
49 |
|
|
if { ![ld_assemble $as $srcdir/$subdir/$test.s tmpdir/$test.o ] } {
|
50 |
|
|
unresolved "$test_name"
|
51 |
|
|
return
|
52 |
|
|
}
|
53 |
|
|
|
54 |
|
|
if { ![ld_simple_link $ld tmpdir/$test "$ld_options tmpdir/$test.o"] } {
|
55 |
|
|
if { [string match "*not supported*" $link_output]
|
56 |
|
|
|| [string match "*unrecognized option*" $link_output] } {
|
57 |
|
|
unsupported "$ld_options is not supported by this target"
|
58 |
|
|
} else {
|
59 |
|
|
unresolved "$test_name"
|
60 |
|
|
}
|
61 |
|
|
return
|
62 |
|
|
}
|
63 |
|
|
|
64 |
|
|
send_log "$READELF -l --wide tmpdir/$test > tmpdir/$test.exp\n"
|
65 |
|
|
set got [remote_exec host "$READELF -l --wide tmpdir/$test" "" "/dev/null" "tmpdir/$test.exp"]
|
66 |
|
|
if { [lindex $got 0] != 0 || ![string match "" [lindex $got 1]] } then {
|
67 |
|
|
send_log "$got\n"
|
68 |
|
|
unresolved "$test_name"
|
69 |
|
|
return
|
70 |
|
|
}
|
71 |
|
|
|
72 |
|
|
send_log "$prog tmpdir/$test\n"
|
73 |
|
|
set got [remote_exec host "$prog tmpdir/$test"]
|
74 |
|
|
if { [lindex $got 0] != 0 || ![string match "" [lindex $got 1]] } then {
|
75 |
|
|
send_log "$got\n"
|
76 |
|
|
fail "$test_name"
|
77 |
|
|
return
|
78 |
|
|
}
|
79 |
|
|
|
80 |
|
|
send_log "$READELF -l --wide tmpdir/$test > tmpdir/$test.out\n"
|
81 |
|
|
set got [remote_exec host "$READELF -l --wide tmpdir/$test" "" "/dev/null" "tmpdir/$test.out"]
|
82 |
|
|
if { [lindex $got 0] != 0 || ![string match "" [lindex $got 1]] } then {
|
83 |
|
|
send_log "$got\n"
|
84 |
|
|
unresolved "$test_name"
|
85 |
|
|
return
|
86 |
|
|
}
|
87 |
|
|
|
88 |
|
|
if { [catch {exec cmp tmpdir/$test.exp tmpdir/$test.out}] } then {
|
89 |
|
|
send_log "tmpdir/$test.exp tmpdir/$test.out differ.\n"
|
90 |
|
|
fail "$test_name"
|
91 |
|
|
return
|
92 |
|
|
}
|
93 |
|
|
|
94 |
|
|
pass "$test_name"
|
95 |
|
|
}
|
96 |
|
|
|
97 |
|
|
binutils_test strip "-z max-page-size=0x200000" maxpage1
|
98 |
|
|
binutils_test strip "-z max-page-size=0x200000 -z common-page-size=0x100000" maxpage1
|
99 |
|
|
binutils_test strip "-z max-page-size=0x100000" maxpage1
|
100 |
|
|
binutils_test strip "-z max-page-size=0x100000 -z common-page-size=0x1000" maxpage1
|
101 |
|
|
|
102 |
|
|
binutils_test strip "" maxpage1
|
103 |
|
|
binutils_test strip "-shared" maxpage1
|
104 |
|
|
binutils_test objcopy "" maxpage1
|
105 |
|
|
binutils_test objcopy "-shared" maxpage1
|
106 |
|
|
|
107 |
|
|
binutils_test strip "-z relro" relro1
|
108 |
|
|
binutils_test strip "-z relro -shared" relro1
|
109 |
|
|
binutils_test objcopy "-z relro" relro1
|
110 |
|
|
binutils_test objcopy "-z relro -shared" relro1
|
111 |
|
|
if { ([istarget "i?86-*-elf*"]
|
112 |
|
|
|| ([istarget "i?86-*-linux*"]
|
113 |
|
|
&& ![istarget "*-*-*aout*"]
|
114 |
|
|
&& ![istarget "*-*-*oldld*"])
|
115 |
|
|
|| [istarget "x86_64-*-linux*"]
|
116 |
|
|
|| [istarget "amd64-*-linux*"]) } {
|
117 |
|
|
binutils_test strip "-z relro -shared" relro2
|
118 |
|
|
binutils_test objcopy "-z relro -shared" relro2
|
119 |
|
|
}
|
120 |
|
|
|
121 |
|
|
binutils_test objcopy "" tbss1
|
122 |
|
|
binutils_test objcopy "-z relro" tbss1
|
123 |
|
|
binutils_test objcopy "-shared" tbss1
|
124 |
|
|
binutils_test objcopy "-shared -z relro" tbss1
|
125 |
|
|
binutils_test objcopy "-z max-page-size=0x100000" tbss1
|
126 |
|
|
binutils_test objcopy "-z max-page-size=0x100000 -z common-page-size=0x1000" tbss1
|
127 |
|
|
binutils_test objcopy "" tdata1
|
128 |
|
|
binutils_test objcopy "-z relro" tdata1
|
129 |
|
|
binutils_test objcopy "-shared" tdata1
|
130 |
|
|
binutils_test objcopy "-shared -z relro" tdata1
|
131 |
|
|
binutils_test objcopy "-z max-page-size=0x100000" tdata1
|
132 |
|
|
binutils_test objcopy "-z max-page-size=0x100000 -z common-page-size=0x1000" tdata1
|
133 |
|
|
binutils_test objcopy "" tbss2
|
134 |
|
|
binutils_test objcopy "-z relro" tbss2
|
135 |
|
|
binutils_test objcopy "-shared" tbss2
|
136 |
|
|
binutils_test objcopy "-shared -z relro" tbss2
|
137 |
|
|
binutils_test objcopy "-z max-page-size=0x100000" tbss2
|
138 |
|
|
binutils_test objcopy "-z max-page-size=0x100000 -z common-page-size=0x1000" tbss2
|
139 |
|
|
|
140 |
|
|
binutils_test objcopy "" tdata2
|
141 |
|
|
binutils_test objcopy "-z relro" tdata2
|
142 |
|
|
binutils_test objcopy "-shared" tdata2
|
143 |
|
|
binutils_test objcopy "-shared -z relro" tdata2
|
144 |
|
|
binutils_test objcopy "-z max-page-size=0x100000" tdata2
|
145 |
|
|
binutils_test objcopy "-z max-page-size=0x100000 -z common-page-size=0x1000" tdata2
|