2005-03-03 12:52:12 +01:00
|
|
|
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
|
bfd:
* config.bfd (thumb-*-oabi): Don't handle in list of obsolete
targets.
(strongarm*, thumb*, xscale*): Remove architectures.
(strongarm-*-kaos*, thumb-*-coff, thumb-*-elf, thumb-epoc-pe*,
thumb-*-pe*, strongarm-*-elf, strongarm-*-coff, xscale-*-elf,
xscale-*-coff): Remove targets.
binutils:
* configure.in (thumb-*-pe*): Remove.
* configure: Regenerate.
binutils/testsuite:
* binutils-all/objcopy.exp (*arm*-*-coff): Change to arm*-*-coff.
(xscale-*-coff, thumb*-*-coff, thumb*-*-pe): Don't handle.
gas:
* configure.tgt (strongarm*be, strongarm*b, strongarm*,
xscale*be|xscale*b, xscale*): Remove architectures.
(thumb-*-coff, thumb-*-rtems*, thumb-*-elf, thumb-epoc-pe,
thumb-*-pe, xscale-*-coff, xscale-*-elf): Remove targets.
gas/testsuite:
* gas/all/gas.exp (*arm*-*-coff): Change to arm*-*-coff.
(thumb*-*-coff, thumb*-*-pe*): Don;t handle.
* gas/arm/arm.exp (*arm*-*-*): Change to arm*-*-*.
(*xscale*-*-*): Don't handle.
* gas/cfi/cfi.exp (xscale*-*): Don't handle.
* gas/elf/elf.exp (*arm*-*-*): Change to arm*-*-*.
(xscale*-*-*): Don't handle.
ld:
* configure.tgt (thumb-*-linux-* | thumb-*-uclinux*,
strongarm-*-coff, strongarm-*-elf, strongarm-*-kaos*,
thumb-*-coff, thumb-*-elf, thumb-epoc-pe, thumb-*-pe,
xscale-*-coff, xscale-*-elf): Remove targets.
ld/testsuite:
* ld-selective/selective.exp (xscale-*-*): Don't handle.
* ld-srec/srec.exp (strongarm*-*-*, xscale*-*-*, thumb-*-*): Don't
handle.
(*arm*-*-*): Change to arm*-*-*.
(strongarm*-*-coff, xscale*-*-coff, thumb-*-coff*, thumb-*-pe*,
thumb-*-elf*, strongarm*-*-*, thumb-*-*): Remove xfails.
* ld-undefined/undefined.exp (thumb*-*-pe*, thumb*-*-pe*): Remove
commented-out xfails.
(thumb-elf): Remove reference in comment.
* lib/ld-lib.exp (strongarm*-*-*, xscale*-*-*, thumb-*-*): Don't
handle.
2011-04-06 19:09:56 +02:00
|
|
|
# 2004, 2006, 2007, 2009, 2010, 2011
|
2001-03-13 07:43:59 +01:00
|
|
|
# Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-07-05 18:54:46 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
1999-05-03 09:29:11 +02:00
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
2005-05-08 16:17:41 +02:00
|
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
# Please email any bugs, comments, and/or additions to this file to:
|
|
|
|
# bug-dejagnu@prep.ai.mit.edu
|
|
|
|
|
|
|
|
# Written by Ian Lance Taylor <ian@cygnus.com>
|
|
|
|
|
|
|
|
if ![is_remote host] {
|
|
|
|
if {[which $OBJCOPY] == 0} then {
|
|
|
|
perror "$OBJCOPY does not exist"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
send_user "Version [binutil_version $OBJCOPY]"
|
|
|
|
|
|
|
|
if ![is_remote host] {
|
2004-05-12 05:28:46 +02:00
|
|
|
set tempfile tmpdir/bintest.o
|
|
|
|
set copyfile tmpdir/copy
|
1999-05-03 09:29:11 +02:00
|
|
|
} else {
|
|
|
|
set tempfile [remote_download host tmpdir/bintest.o]
|
|
|
|
set copyfile copy
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test that objcopy does not modify a file when copying it.
|
|
|
|
|
2005-10-19 22:49:03 +02:00
|
|
|
proc objcopy_test {testname srcfile} {
|
|
|
|
global OBJCOPY
|
|
|
|
global OBJCOPYFLAGS
|
|
|
|
global srcdir
|
|
|
|
global subdir
|
|
|
|
global tempfile
|
|
|
|
global copyfile
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2005-10-19 22:49:03 +02:00
|
|
|
if {![binutils_assemble $srcdir/$subdir/${srcfile} tmpdir/bintest.o]} then {
|
|
|
|
perror "unresolved $testname"
|
|
|
|
unresolved "objcopy ($testname)"
|
|
|
|
return
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2005-10-19 22:49:03 +02:00
|
|
|
set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS $tempfile ${copyfile}.o"]
|
|
|
|
|
|
|
|
if ![string match "" $got] then {
|
|
|
|
fail "objcopy ($testname)"
|
1999-05-03 09:29:11 +02:00
|
|
|
} else {
|
2005-10-19 22:49:03 +02:00
|
|
|
send_log "cmp $tempfile ${copyfile}.o\n"
|
|
|
|
verbose "cmp $tempfile ${copyfile}.o"
|
|
|
|
if [is_remote host] {
|
|
|
|
set src1 tmpdir/bintest.o
|
|
|
|
set src2 tmpdir/copy.o
|
|
|
|
remote_upload host $tempfile $src1
|
|
|
|
remote_upload host ${copyfile}.o $src2
|
|
|
|
} else {
|
|
|
|
set src1 ${tempfile}
|
|
|
|
set src2 ${copyfile}.o
|
|
|
|
}
|
|
|
|
set status [remote_exec build cmp "${src1} ${src2}"]
|
|
|
|
set exec_output [lindex $status 1]
|
|
|
|
set exec_output [prune_warnings $exec_output]
|
|
|
|
|
|
|
|
# On some systems the result of objcopy will not be identical.
|
|
|
|
# Usually this is just because gas isn't using bfd to write the
|
|
|
|
# files in the first place, and may order things a little
|
|
|
|
# differently. Those systems should use setup_xfail here.
|
|
|
|
|
2010-09-23 14:04:37 +02:00
|
|
|
setup_xfail "h8300-*-coff"
|
2005-10-19 22:49:03 +02:00
|
|
|
setup_xfail "h8500-*-rtems*" "h8500-*-coff"
|
|
|
|
setup_xfail "hppa*-*-*"
|
|
|
|
setup_xfail "i960-*"
|
|
|
|
setup_xfail "m68*-*-*coff" "m68*-*-hpux*" "m68*-*-lynxos*"
|
|
|
|
setup_xfail "m68*-*-sysv*" "m68*-apple-aux*"
|
|
|
|
setup_xfail "m8*-*"
|
|
|
|
setup_xfail "or32-*-rtems*" "or32-*-coff"
|
2011-05-13 06:14:51 +02:00
|
|
|
setup_xfail "sh-*-coff*"
|
|
|
|
setup_xfail "tic80-*-*" "w65-*"
|
2005-10-19 22:49:03 +02:00
|
|
|
|
|
|
|
clear_xfail "hppa*64*-*-hpux*" "hppa*-*-linux*" "hppa*-*-lites*"
|
|
|
|
clear_xfail "hppa*-*-*n*bsd*" "hppa*-*-rtems*" "*-*-*elf*"
|
|
|
|
clear_xfail "m68*-*-sysv4*"
|
|
|
|
|
|
|
|
if [string match "" $exec_output] then {
|
|
|
|
pass "objcopy ($testname)"
|
|
|
|
} else {
|
|
|
|
send_log "$exec_output\n"
|
|
|
|
verbose "$exec_output" 1
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2005-10-19 22:49:03 +02:00
|
|
|
# On OSF/1, this succeeds with gas and fails with /bin/as.
|
|
|
|
setup_xfail "alpha*-*-osf*"
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2005-10-19 22:49:03 +02:00
|
|
|
fail "objcopy ($testname)"
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-19 22:49:03 +02:00
|
|
|
objcopy_test "simple copy" bintest.s
|
|
|
|
|
2007-04-23 12:59:07 +02:00
|
|
|
# Test reversing bytes in a section.
|
|
|
|
|
|
|
|
set reversed ${tempfile}-reversed
|
|
|
|
set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -j .data --reverse-bytes=4 $tempfile $reversed"]
|
|
|
|
|
|
|
|
if ![string match "" $got] then {
|
|
|
|
fail "objcopy --reverse-bytes"
|
|
|
|
} else {
|
|
|
|
if [is_remote host] {
|
|
|
|
remote_upload host ${reversed} tmpdir/copy-reversed.o
|
|
|
|
set reversed tmpdir/copy-reversed.o
|
|
|
|
}
|
|
|
|
|
|
|
|
set origdata [binutils_run $OBJDUMP "$OBJDUMPFLAGS -s -j .data $tempfile"]
|
|
|
|
set revdata [binutils_run $OBJDUMP "$OBJDUMPFLAGS -s -j .data $reversed"]
|
|
|
|
|
|
|
|
set want "^ \[0-9\]+ (\[0-9\]+)"
|
|
|
|
set found_orig [regexp -lineanchor $want $origdata -> origdata]
|
|
|
|
set found_rev [regexp -lineanchor $want $revdata -> revdata]
|
|
|
|
|
|
|
|
if {$found_orig == 0 || $found_rev == 0} then {
|
2011-01-01 02:56:59 +01:00
|
|
|
# som doesn't have a .data section
|
|
|
|
setup_xfail "hppa*-*-hpux*"
|
|
|
|
clear_xfail "hppa*64*-*-hpux*"
|
|
|
|
|
2007-04-23 12:59:07 +02:00
|
|
|
fail "objcopy --reverse-bytes"
|
|
|
|
} else {
|
|
|
|
scan $origdata "%2x%2x%2x%2x" b1 b2 b3 b4
|
|
|
|
scan $revdata "%2x%2x%2x%2x" c4 c3 c2 c1
|
|
|
|
|
|
|
|
if {$b1 == $c1 && $b2 == $c2 && $b3 == $c3 && $b4 == $c4} then {
|
|
|
|
pass "objcopy --reverse-bytes"
|
|
|
|
} else {
|
|
|
|
fail "objcopy --reverse-bytes"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-10 14:11:28 +02:00
|
|
|
# Test interleaved copy of multiple byte width
|
|
|
|
|
|
|
|
set sequence_file sequence_file
|
|
|
|
set file [open ${sequence_file} w]
|
|
|
|
puts ${file} "12345678"
|
|
|
|
close ${file}
|
|
|
|
|
|
|
|
if [is_remote host] {
|
|
|
|
remote_upload host ${sequence_file} tmpdir/sequence_file
|
|
|
|
set sequence_file tmpdir/sequence_file
|
|
|
|
}
|
|
|
|
|
|
|
|
set got [binutils_run $OBJCOPY "-I binary -i 4 -b 0 --interleave-width 2 ${sequence_file} ${copyfile}"]
|
|
|
|
|
|
|
|
if ![string match "" $got] then {
|
|
|
|
fail "objcopy -i --interleave-width"
|
|
|
|
} else {
|
|
|
|
if [is_remote host] {
|
|
|
|
remote_upload host ${copyfile} tmpdir/interleave_output
|
|
|
|
set interleave_output tmpdir/interleave_output
|
|
|
|
} else {
|
|
|
|
set interleave_output ${copyfile}
|
|
|
|
}
|
|
|
|
|
|
|
|
set file [open ${interleave_output} r]
|
|
|
|
gets $file line
|
|
|
|
send_log "$line\n"
|
|
|
|
verbose $line
|
|
|
|
|
|
|
|
if ![string match "1256" $line] then {
|
|
|
|
fail "objcopy -i --interleave-width"
|
|
|
|
}
|
|
|
|
pass "objcopy -i --interleave-width"
|
|
|
|
|
|
|
|
close $file
|
|
|
|
}
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
# Test generating S records.
|
|
|
|
|
|
|
|
# We make the srec filename 8.3 compatible. Note that the header string
|
|
|
|
# matched against depends on the name of the file. Ugh.
|
|
|
|
|
|
|
|
if [is_remote host] {
|
|
|
|
set srecfile copy.sre
|
|
|
|
set header_string S00B0000636F70792E737265C1
|
|
|
|
} else {
|
|
|
|
set srecfile ${copyfile}.srec
|
|
|
|
set header_string S0130000746D706469722F636F70792E7372656397
|
|
|
|
}
|
|
|
|
|
|
|
|
set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec $tempfile ${srecfile}"]
|
|
|
|
|
|
|
|
if ![string match "" $got] then {
|
|
|
|
fail "objcopy -O srec"
|
|
|
|
} else {
|
|
|
|
if [is_remote host] {
|
2004-05-12 05:28:46 +02:00
|
|
|
remote_upload host ${srecfile} tmpdir/copy.srec
|
|
|
|
set srecfile tmpdir/copy.srec
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
set file [open ${srecfile} r]
|
|
|
|
|
|
|
|
# The first S record is fixed by the file name we are using.
|
|
|
|
gets $file line
|
|
|
|
send_log "$line\n"
|
|
|
|
verbose $line
|
|
|
|
if ![regexp "$header_string.*" $line] {
|
|
|
|
send_log "bad header\n"
|
|
|
|
fail "objcopy -O srec"
|
|
|
|
} else {
|
|
|
|
while {[gets $file line] != -1 \
|
|
|
|
&& [regexp "^S\[123\]\[0-9a-fA-F\]+\[\r\n\]*$" $line]} {
|
|
|
|
send_log "$line\n"
|
|
|
|
verbose $line
|
|
|
|
set line "**EOF**"
|
|
|
|
}
|
|
|
|
send_log "$line\n"
|
|
|
|
verbose $line
|
|
|
|
if ![regexp "^S\[789\]\[0-9a-fA-F\]+\[\r\n\]*$" $line] then {
|
|
|
|
send_log "bad trailer\n"
|
|
|
|
fail "objcopy -O srec"
|
|
|
|
} else {
|
|
|
|
if {[gets $file line] != -1} then {
|
|
|
|
send_log "garbage at end\n"
|
|
|
|
send_log "$line\n"
|
|
|
|
verbose $line
|
|
|
|
fail "objcopy -O srec"
|
|
|
|
} else {
|
2007-08-28 15:21:58 +02:00
|
|
|
set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -f ${srecfile}"]
|
1999-05-03 09:29:11 +02:00
|
|
|
if ![regexp "file format srec" $got] then {
|
|
|
|
send_log "objdump failed\n"
|
|
|
|
fail "objcopy -O srec"
|
|
|
|
} else {
|
|
|
|
pass "objcopy -O srec"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
close $file
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test setting and adjusting the start address. We only test this
|
|
|
|
# while generating S records, because we may not be able to set the
|
|
|
|
# start address for other object file formats, and the S record case
|
|
|
|
# is the only useful one anyhow.
|
|
|
|
|
|
|
|
set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -f $tempfile"]
|
|
|
|
if ![regexp "start address (\[0-9a-fA-FxX\]+)" $got all origstart] then {
|
|
|
|
perror "objdump can not recognize bintest.o"
|
|
|
|
set origstart ""
|
|
|
|
} else {
|
2004-02-20 16:21:54 +01:00
|
|
|
set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec --set-start 0x7654 $tempfile ${copyfile}.srec"]
|
1999-05-03 09:29:11 +02:00
|
|
|
if ![string match "" $got] then {
|
|
|
|
fail "objcopy --set-start"
|
|
|
|
} else {
|
|
|
|
set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -f ${copyfile}.srec"]
|
|
|
|
if ![regexp "file format srec.*start address (\[0-9a-fA-FxX\]+)" $got all srecstart] then {
|
|
|
|
fail "objcopy --set-start"
|
|
|
|
} else {
|
|
|
|
if {$srecstart != 0x7654} then {
|
|
|
|
send_log "$srecstart != 0x7654\n"
|
|
|
|
fail "objcopy --set-start"
|
|
|
|
} else {
|
|
|
|
pass "objcopy --set-start"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-20 16:21:54 +01:00
|
|
|
set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec --adjust-start 0x123 $tempfile ${copyfile}.srec"]
|
1999-05-03 09:29:11 +02:00
|
|
|
if ![string match "" $got] then {
|
|
|
|
fail "objcopy --adjust-start"
|
|
|
|
} else {
|
|
|
|
set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -f ${copyfile}.srec"]
|
|
|
|
if ![regexp "file format srec.*start address (\[0-9a-fA-FxX\]+)" $got all srecstart] then {
|
|
|
|
fail "objcopy --adjust-start"
|
|
|
|
} else {
|
|
|
|
if {$srecstart != $origstart + 0x123} then {
|
|
|
|
send_log "$srecstart != $origstart + 0x123\n"
|
|
|
|
fail "objcopy --adjust-start"
|
|
|
|
} else {
|
|
|
|
pass "objcopy --adjust-start"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test adjusting the overall VMA, and adjusting the VMA of a
|
|
|
|
# particular section. We again only test this when generating S
|
|
|
|
# records.
|
|
|
|
|
|
|
|
set low ""
|
|
|
|
set lowname ""
|
|
|
|
|
|
|
|
set headers [binutils_run $OBJDUMP "$OBJDUMPFLAGS -h $tempfile"]
|
|
|
|
|
|
|
|
set headers_regexp "\[ 0-9\]+(\[^ \]+)\[ \]*(\[0-9a-fA-F\]+)\[ \]+\[0-9a-fA-F\]+\[ \]+(\[0-9a-fA-F\]+)\[ \]+\[0-9a-fA-F\]+\[ \]+2\[*\]\[*\]\[0-9\]+(.*)"
|
|
|
|
|
|
|
|
set got $headers
|
|
|
|
while {[regexp $headers_regexp $got all name size vma rest]} {
|
|
|
|
set vma 0x$vma
|
|
|
|
set size 0x$size
|
|
|
|
if {$size != 0} {
|
|
|
|
if {$low == "" || $vma < $low} {
|
|
|
|
set low $vma
|
|
|
|
set lowname $name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
set got $rest
|
|
|
|
}
|
|
|
|
|
|
|
|
if {$low == "" || $origstart == ""} then {
|
|
|
|
perror "objdump can not recognize bintest.o"
|
|
|
|
} else {
|
2004-02-20 16:21:54 +01:00
|
|
|
set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec --adjust-vma 0x123 $tempfile ${copyfile}.srec"]
|
1999-05-03 09:29:11 +02:00
|
|
|
if ![string match "" $got] then {
|
|
|
|
fail "objcopy --adjust-vma"
|
|
|
|
} else {
|
|
|
|
set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -fh ${copyfile}.srec"]
|
|
|
|
set want "file format srec.*start address\[ \]*(\[0-9a-fA-FxX\]+).*sec1\[ \]+\[0-9a-fA-F\]+\[ \]+(\[0-9a-fA-F\]+)"
|
|
|
|
if ![regexp $want $got all start vma] then {
|
|
|
|
fail "objcopy --adjust-vma"
|
|
|
|
} else {
|
|
|
|
set vma 0x$vma
|
|
|
|
if {$vma != $low + 0x123} then {
|
|
|
|
send_log "$vma != $low + 0x123\n"
|
|
|
|
fail "objcopy --adjust-vma"
|
|
|
|
} else {
|
|
|
|
if {$start != $origstart + 0x123} then {
|
|
|
|
send_log "$start != $origstart + 0x123\n"
|
|
|
|
fail "objcopy --adjust-vma"
|
|
|
|
} else {
|
|
|
|
pass "objcopy --adjust-vma"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
set arg ""
|
|
|
|
set got $headers
|
|
|
|
while {[regexp $headers_regexp $got all name size vma rest]} {
|
|
|
|
set vma 0x$vma
|
|
|
|
if {$vma == $low} then {
|
|
|
|
set arg "$arg --adjust-section-vma $name+4"
|
|
|
|
}
|
|
|
|
set got $rest
|
|
|
|
}
|
|
|
|
|
2004-02-20 16:21:54 +01:00
|
|
|
set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec $arg $tempfile ${copyfile}.srec"]
|
1999-05-03 09:29:11 +02:00
|
|
|
if ![string match "" $got] then {
|
|
|
|
fail "objcopy --adjust-section-vma +"
|
|
|
|
} else {
|
|
|
|
set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -h ${copyfile}.srec"]
|
|
|
|
set want "file format srec.*sec1\[ \]+\[0-9a-fA-F\]+\[ \]+(\[0-9a-fA-F\]+)"
|
|
|
|
if ![regexp $want $got all vma] then {
|
|
|
|
fail "objcopy --adjust-section-vma +"
|
|
|
|
} else {
|
|
|
|
set vma 0x$vma
|
|
|
|
if {$vma != $low + 4} then {
|
|
|
|
send_log "$vma != $low + 4\n"
|
|
|
|
fail "objcopy --adjust-section-vma +"
|
|
|
|
} else {
|
|
|
|
pass "objcopy --adjust-section-vma +"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
regsub -all "\\+4" $arg "=[expr $low + 4]" argeq
|
2004-02-20 16:21:54 +01:00
|
|
|
set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec $argeq $tempfile ${copyfile}.srec"]
|
1999-05-03 09:29:11 +02:00
|
|
|
if ![string match "" $got] then {
|
|
|
|
fail "objcopy --adjust-section-vma ="
|
|
|
|
} else {
|
|
|
|
set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -h ${copyfile}.srec"]
|
|
|
|
set want "file format srec.*sec1\[ \]+\[0-9a-fA-F\]+\[ \]+(\[0-9a-fA-F\]+)"
|
|
|
|
if ![regexp $want $got all vma] then {
|
|
|
|
fail "objcopy --adjust-section-vma ="
|
|
|
|
} else {
|
|
|
|
set vma 0x$vma
|
|
|
|
if {$vma != $low + 4} then {
|
|
|
|
send_log "$vma != $low + 4\n"
|
|
|
|
fail "objcopy --adjust-section-vma ="
|
|
|
|
} else {
|
|
|
|
pass "objcopy --adjust-section-vma ="
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test stripping an object.
|
|
|
|
|
|
|
|
proc strip_test { } {
|
2001-11-29 18:34:07 +01:00
|
|
|
global AR
|
1999-05-03 09:29:11 +02:00
|
|
|
global CC
|
|
|
|
global STRIP
|
|
|
|
global STRIPFLAGS
|
|
|
|
global NM
|
|
|
|
global NMFLAGS
|
|
|
|
global srcdir
|
|
|
|
global subdir
|
2011-06-30 23:41:05 +02:00
|
|
|
global READELF
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
set test "strip"
|
|
|
|
|
|
|
|
if { [target_compile $srcdir/$subdir/testprog.c tmpdir/testprog.o object debug] != "" } {
|
|
|
|
untested $test
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2011-06-30 23:41:05 +02:00
|
|
|
set osabi_fail "false"
|
|
|
|
if [is_elf_format] {
|
|
|
|
verbose -log "$READELF -a tmpdir/testprog.o > tmpdir/osabi.in"
|
|
|
|
set exec_output [remote_exec host "$READELF -h tmpdir/testprog.o" "" "/dev/null" "tmpdir/osabi.in"]
|
|
|
|
if { [lindex $exec_output 0] != 0 } then {
|
|
|
|
unresolved "$test preserving OS/ABI"
|
|
|
|
set osabi_fail "true"
|
|
|
|
} else {
|
|
|
|
verbose -log "grep OS/ABI tmpdir/osabi.in"
|
|
|
|
catch "exec grep OS/ABI tmpdir/osabi.in" osabi_in
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if [is_remote host] {
|
2001-11-29 18:34:07 +01:00
|
|
|
set archive libstrip.a
|
2004-05-12 05:28:46 +02:00
|
|
|
set objfile [remote_download host tmpdir/testprog.o]
|
2001-11-29 18:34:07 +01:00
|
|
|
remote_file host delete $archive
|
|
|
|
} else {
|
|
|
|
set archive tmpdir/libstrip.a
|
|
|
|
set objfile tmpdir/testprog.o
|
|
|
|
}
|
|
|
|
|
|
|
|
remote_file build delete tmpdir/libstrip.a
|
|
|
|
|
|
|
|
set exec_output [binutils_run $AR "rc $archive ${objfile}"]
|
|
|
|
if ![string match "" $exec_output] {
|
|
|
|
fail $test
|
2011-06-30 23:41:05 +02:00
|
|
|
unresolved "$test preserving OS/ABI"
|
2001-11-29 18:34:07 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2006-04-25 16:06:10 +02:00
|
|
|
set exec_output [binutils_run $STRIP "-g $archive"]
|
|
|
|
if ![string match "" $exec_output] {
|
|
|
|
fail $test
|
2011-06-30 23:41:05 +02:00
|
|
|
unresolved "$test preserving OS/ABI"
|
2006-04-25 16:06:10 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2001-11-29 18:34:07 +01:00
|
|
|
set exec_output [binutils_run $STRIP "$STRIPFLAGS $archive"]
|
|
|
|
if ![string match "" $exec_output] {
|
|
|
|
fail $test
|
2011-06-30 23:41:05 +02:00
|
|
|
unresolved "$test preserving OS/ABI"
|
2001-11-29 18:34:07 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2011-06-30 23:41:05 +02:00
|
|
|
if { $osabi_fail != "true" && [is_elf_format] } {
|
|
|
|
verbose -log "$READELF -a tmpdir/testprog.o > tmpdir/osabi.out"
|
|
|
|
set exec_output [remote_exec host "$READELF -h tmpdir/testprog.o" "" "/dev/null" "tmpdir/osabi.out"]
|
|
|
|
if { [lindex $exec_output 0] != 0 } then {
|
|
|
|
unresolved "$test preserving OS/ABI"
|
|
|
|
} else {
|
|
|
|
verbose -log "grep OS/ABI tmpdir/osabi.out"
|
|
|
|
catch "exec grep OS/ABI tmpdir/osabi.out" osabi_out
|
|
|
|
if { "$osabi_in" == "$osabi_out" } {
|
|
|
|
pass "$test preserving OS/ABI"
|
|
|
|
} else {
|
|
|
|
fail "$test preserving OS/ABI"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-29 18:34:07 +01:00
|
|
|
if { [target_compile $srcdir/$subdir/testprog.c tmpdir/testprog.o object debug] != "" } {
|
|
|
|
untested $test
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if [is_remote host] {
|
2004-05-12 05:28:46 +02:00
|
|
|
set objfile [remote_download host tmpdir/testprog.o]
|
1999-05-03 09:29:11 +02:00
|
|
|
} else {
|
|
|
|
set objfile tmpdir/testprog.o
|
|
|
|
}
|
|
|
|
|
|
|
|
set exec_output [binutils_run $STRIP "$STRIPFLAGS $objfile"]
|
|
|
|
if ![string match "" $exec_output] {
|
|
|
|
fail $test
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
set exec_output [binutils_run $NM "-a $NMFLAGS $objfile"]
|
2002-08-27 01:15:48 +02:00
|
|
|
if ![string match "*: no symbols*" $exec_output] {
|
1999-05-03 09:29:11 +02:00
|
|
|
fail $test
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
pass $test
|
|
|
|
}
|
|
|
|
|
|
|
|
strip_test
|
|
|
|
|
|
|
|
# Test stripping an object file with saving a symbol
|
|
|
|
|
|
|
|
proc strip_test_with_saving_a_symbol { } {
|
|
|
|
global CC
|
|
|
|
global STRIP
|
|
|
|
global STRIPFLAGS
|
|
|
|
global NM
|
|
|
|
global NMFLAGS
|
|
|
|
global srcdir
|
|
|
|
global subdir
|
|
|
|
|
|
|
|
set test "strip with saving a symbol"
|
|
|
|
|
|
|
|
if { [target_compile $srcdir/$subdir/testprog.c tmpdir/testprog.o object debug] != "" } {
|
|
|
|
untested $test
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if [is_remote host] {
|
2004-05-12 05:28:46 +02:00
|
|
|
set objfile [remote_download host tmpdir/testprog.o]
|
1999-05-03 09:29:11 +02:00
|
|
|
} else {
|
|
|
|
set objfile tmpdir/testprog.o
|
|
|
|
}
|
|
|
|
|
|
|
|
set exec_output [binutils_run $STRIP "$STRIPFLAGS -K main -K _main $objfile"]
|
|
|
|
if ![string match "" $exec_output] {
|
|
|
|
fail $test
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
set exec_output [binutils_run $NM "$NMFLAGS $objfile"]
|
2002-05-29 07:00:33 +02:00
|
|
|
if {![regexp {^([0-9a-fA-F]+)?[ ]+[TD] main} $exec_output] \
|
1999-05-03 09:29:11 +02:00
|
|
|
&& ![regexp {^([0-9a-fA-F]+)?[ ]+T _main} $exec_output]} {
|
|
|
|
fail $test
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
pass $test
|
|
|
|
}
|
|
|
|
|
|
|
|
strip_test_with_saving_a_symbol
|
|
|
|
|
|
|
|
# Build a final executable.
|
|
|
|
|
2006-09-20 13:35:11 +02:00
|
|
|
if { [istarget *-*-cygwin] || [istarget *-*-mingw*] } {
|
2003-06-19 09:45:50 +02:00
|
|
|
set test_prog "testprog.exe"
|
|
|
|
} else {
|
|
|
|
set test_prog "testprog"
|
|
|
|
}
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
proc copy_setup { } {
|
|
|
|
global srcdir
|
|
|
|
global subdir
|
2001-02-12 01:21:59 +01:00
|
|
|
global gcc_gas_flag
|
2003-06-19 09:45:50 +02:00
|
|
|
global test_prog
|
2008-07-08 10:15:09 +02:00
|
|
|
global host_triplet
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2004-05-12 05:28:46 +02:00
|
|
|
set res [build_wrapper testglue.o]
|
|
|
|
set flags { debug }
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2011-06-30 23:41:05 +02:00
|
|
|
if { [istarget *-*-uclinux*] && ![istarget tic6x-*-*] } {
|
2007-02-27 13:19:16 +01:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if { $res != "" } {
|
2004-05-12 05:28:46 +02:00
|
|
|
lappend flags "additional_flags=[lindex $res 1]"
|
|
|
|
set add_libs "testglue.o"
|
1999-05-03 09:29:11 +02:00
|
|
|
} else {
|
2004-05-12 05:28:46 +02:00
|
|
|
set add_libs ""
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2010-11-08 07:43:40 +01:00
|
|
|
if { [istarget *-*-linux*]
|
|
|
|
|| [istarget *-*-gnu*] } {
|
2001-02-12 01:21:59 +01:00
|
|
|
foreach i $gcc_gas_flag {
|
|
|
|
set flags "additional_flags=$i $flags"
|
|
|
|
}
|
|
|
|
}
|
2003-06-19 09:45:50 +02:00
|
|
|
if { [target_compile "$srcdir/$subdir/testprog.c $add_libs" tmpdir/$test_prog executable $flags] != "" } {
|
1999-05-03 09:29:11 +02:00
|
|
|
return 2
|
|
|
|
}
|
|
|
|
|
2004-05-12 05:28:46 +02:00
|
|
|
set result [remote_load target tmpdir/$test_prog]
|
|
|
|
set status [lindex $result 0]
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
if { $status != "pass" } {
|
2008-07-08 10:15:09 +02:00
|
|
|
send_log "cannot run executable, status = ${status} on ${host_triplet}\n"
|
|
|
|
if { [istarget $host_triplet] } {
|
|
|
|
return 3
|
|
|
|
}
|
|
|
|
set status "pass"
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test copying an executable.
|
|
|
|
|
|
|
|
proc copy_executable { prog flags test1 test2 } {
|
2003-06-19 09:45:50 +02:00
|
|
|
global test_prog
|
2008-07-08 10:15:09 +02:00
|
|
|
global host_triplet
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
if [is_remote host] {
|
2004-05-12 05:28:46 +02:00
|
|
|
set testfile [remote_download host tmpdir/$test_prog]
|
1999-05-03 09:29:11 +02:00
|
|
|
set testcopy copyprog
|
|
|
|
} else {
|
2003-06-19 09:45:50 +02:00
|
|
|
set testfile tmpdir/$test_prog
|
1999-05-03 09:29:11 +02:00
|
|
|
set testcopy tmpdir/copyprog
|
|
|
|
}
|
2004-05-12 05:28:46 +02:00
|
|
|
remote_file host delete $testcopy
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
set exec_output [binutils_run $prog "$flags $testfile $testcopy"]
|
|
|
|
|
|
|
|
if ![string match "" $exec_output] {
|
|
|
|
fail $test1
|
2007-05-02 12:38:00 +02:00
|
|
|
if [string match "" $test2] {
|
|
|
|
return
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
fail $test2
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if [is_remote host] {
|
|
|
|
remote_upload host $testcopy tmpdir/copyprog
|
|
|
|
}
|
|
|
|
|
2003-06-19 09:45:50 +02:00
|
|
|
set status [remote_exec build "cmp" "tmpdir/$test_prog tmpdir/copyprog"]
|
2004-05-12 05:28:46 +02:00
|
|
|
set exec_output [lindex $status 1]
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
if [string match "" $exec_output] then {
|
|
|
|
pass $test1
|
|
|
|
} else {
|
|
|
|
send_log "$exec_output\n"
|
|
|
|
verbose "$exec_output"
|
|
|
|
|
|
|
|
# This will fail for many reasons. For example, it will most
|
|
|
|
# likely fail if a non-GNU linker is used. Therefore, we do
|
|
|
|
# not insist that it pass. If you are using an assembler and
|
|
|
|
# linker based on the same BFD as objcopy, it is worth
|
|
|
|
# investigating to see why this failure occurs. If we are
|
|
|
|
# cross compiling, we assume that a GNU linker is being used,
|
|
|
|
# and expect it to succeed.
|
|
|
|
if {[isnative]} then {
|
|
|
|
setup_xfail "*-*-*"
|
|
|
|
}
|
|
|
|
|
|
|
|
# This also fails for mips*-*-elf targets. See elf32-mips.c
|
|
|
|
# mips_elf_sym_is_global.
|
|
|
|
setup_xfail "mips*-*-elf"
|
|
|
|
|
bfd:
* config.bfd (thumb-*-oabi): Don't handle in list of obsolete
targets.
(strongarm*, thumb*, xscale*): Remove architectures.
(strongarm-*-kaos*, thumb-*-coff, thumb-*-elf, thumb-epoc-pe*,
thumb-*-pe*, strongarm-*-elf, strongarm-*-coff, xscale-*-elf,
xscale-*-coff): Remove targets.
binutils:
* configure.in (thumb-*-pe*): Remove.
* configure: Regenerate.
binutils/testsuite:
* binutils-all/objcopy.exp (*arm*-*-coff): Change to arm*-*-coff.
(xscale-*-coff, thumb*-*-coff, thumb*-*-pe): Don't handle.
gas:
* configure.tgt (strongarm*be, strongarm*b, strongarm*,
xscale*be|xscale*b, xscale*): Remove architectures.
(thumb-*-coff, thumb-*-rtems*, thumb-*-elf, thumb-epoc-pe,
thumb-*-pe, xscale-*-coff, xscale-*-elf): Remove targets.
gas/testsuite:
* gas/all/gas.exp (*arm*-*-coff): Change to arm*-*-coff.
(thumb*-*-coff, thumb*-*-pe*): Don;t handle.
* gas/arm/arm.exp (*arm*-*-*): Change to arm*-*-*.
(*xscale*-*-*): Don't handle.
* gas/cfi/cfi.exp (xscale*-*): Don't handle.
* gas/elf/elf.exp (*arm*-*-*): Change to arm*-*-*.
(xscale*-*-*): Don't handle.
ld:
* configure.tgt (thumb-*-linux-* | thumb-*-uclinux*,
strongarm-*-coff, strongarm-*-elf, strongarm-*-kaos*,
thumb-*-coff, thumb-*-elf, thumb-epoc-pe, thumb-*-pe,
xscale-*-coff, xscale-*-elf): Remove targets.
ld/testsuite:
* ld-selective/selective.exp (xscale-*-*): Don't handle.
* ld-srec/srec.exp (strongarm*-*-*, xscale*-*-*, thumb-*-*): Don't
handle.
(*arm*-*-*): Change to arm*-*-*.
(strongarm*-*-coff, xscale*-*-coff, thumb-*-coff*, thumb-*-pe*,
thumb-*-elf*, strongarm*-*-*, thumb-*-*): Remove xfails.
* ld-undefined/undefined.exp (thumb*-*-pe*, thumb*-*-pe*): Remove
commented-out xfails.
(thumb-elf): Remove reference in comment.
* lib/ld-lib.exp (strongarm*-*-*, xscale*-*-*, thumb-*-*): Don't
handle.
2011-04-06 19:09:56 +02:00
|
|
|
setup_xfail "arm*-*-coff"
|
1999-11-01 17:48:05 +01:00
|
|
|
setup_xfail "arm*-*-pe"
|
2010-03-30 19:45:19 +02:00
|
|
|
setup_xfail "*-*-mingw*"
|
2009-06-26 03:26:28 +02:00
|
|
|
setup_xfail "*-*-cygwin*"
|
1999-11-01 17:48:05 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
fail $test1
|
|
|
|
}
|
|
|
|
|
2007-05-02 12:38:00 +02:00
|
|
|
if [string match "" $test2] {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
set output [remote_load target tmpdir/copyprog]
|
2004-05-12 05:28:46 +02:00
|
|
|
set status [lindex $output 0]
|
2008-07-08 10:15:09 +02:00
|
|
|
if { ![istarget $host_triplet] } {
|
|
|
|
set status "pass"
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
if { $status != "pass" } {
|
|
|
|
fail $test2
|
|
|
|
} else {
|
|
|
|
pass $test2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test stripping an executable
|
|
|
|
|
|
|
|
proc strip_executable { prog flags test } {
|
|
|
|
global NM
|
|
|
|
global NMFLAGS
|
2011-06-30 23:41:05 +02:00
|
|
|
global READELF
|
2008-07-08 10:15:09 +02:00
|
|
|
global host_triplet
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2009-04-02 15:47:44 +02:00
|
|
|
remote_file build delete tmpdir/striprog
|
1999-05-03 09:29:11 +02:00
|
|
|
remote_download build tmpdir/copyprog tmpdir/striprog
|
|
|
|
if [is_remote host] {
|
2004-05-12 05:28:46 +02:00
|
|
|
set copyfile [remote_download host tmpdir/striprog]
|
1999-05-03 09:29:11 +02:00
|
|
|
} else {
|
|
|
|
set copyfile tmpdir/striprog
|
|
|
|
}
|
|
|
|
|
2011-06-30 23:41:05 +02:00
|
|
|
set osabi_fail "false"
|
|
|
|
if [is_elf_format] {
|
|
|
|
verbose -log "$READELF -a ${copyfile} > tmpdir/osabi.in"
|
|
|
|
set exec_output [remote_exec host "$READELF -h ${copyfile}" "" "/dev/null" "tmpdir/osabi.in"]
|
|
|
|
if { [lindex $exec_output 0] != 0 } then {
|
|
|
|
unresolved "$test preserving OS/ABI"
|
|
|
|
set osabi_fail "true"
|
|
|
|
} else {
|
|
|
|
verbose -log "grep OS/ABI tmpdir/osabi.in"
|
|
|
|
catch "exec grep OS/ABI tmpdir/osabi.in" osabi_in
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
set exec_output [binutils_run $prog "$flags ${copyfile}"]
|
|
|
|
if ![string match "" $exec_output] {
|
|
|
|
fail $test
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if [is_remote host] {
|
2004-05-12 05:28:46 +02:00
|
|
|
remote_upload host ${copyfile} tmpdir/striprog
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
set result [remote_load target tmpdir/striprog]
|
2004-05-12 05:28:46 +02:00
|
|
|
set status [lindex $result 0]
|
2008-07-08 10:15:09 +02:00
|
|
|
if { ![istarget $host_triplet] } {
|
|
|
|
set status "pass"
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
if { $status != "pass" } {
|
|
|
|
fail $test
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2011-06-30 23:41:05 +02:00
|
|
|
if { $osabi_fail != "true" && [is_elf_format] } {
|
|
|
|
verbose -log "$READELF -a ${copyfile} > tmpdir/osabi.out"
|
|
|
|
set exec_output [remote_exec host "$READELF -h ${copyfile}" "" "/dev/null" "tmpdir/osabi.out"]
|
|
|
|
if { [lindex $exec_output 0] != 0 } then {
|
|
|
|
unresolved "$test preserving OS/ABI"
|
|
|
|
} else {
|
|
|
|
verbose -log "grep OS/ABI tmpdir/osabi.out"
|
|
|
|
catch "exec grep OS/ABI tmpdir/osabi.out" osabi_out
|
|
|
|
if { "$osabi_in" == "$osabi_out" } {
|
|
|
|
pass "$test preserving OS/ABI"
|
|
|
|
} else {
|
|
|
|
fail "$test preserving OS/ABI"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
set exec_output [binutils_run $NM "$NMFLAGS ${copyfile}"]
|
2002-08-27 01:15:48 +02:00
|
|
|
if ![string match "*: no symbols*" $exec_output] {
|
1999-05-03 09:29:11 +02:00
|
|
|
fail $test
|
|
|
|
return
|
|
|
|
}
|
|
|
|
pass $test
|
|
|
|
}
|
|
|
|
|
|
|
|
# Test stripping an executable with saving a symbol
|
|
|
|
|
|
|
|
proc strip_executable_with_saving_a_symbol { prog flags test } {
|
|
|
|
global NM
|
|
|
|
global NMFLAGS
|
2008-07-08 10:15:09 +02:00
|
|
|
global host_triplet
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2009-04-02 15:47:44 +02:00
|
|
|
remote_file build delete tmpdir/striprog
|
1999-05-03 09:29:11 +02:00
|
|
|
remote_download build tmpdir/copyprog tmpdir/striprog
|
|
|
|
if [is_remote host] {
|
2004-05-12 05:28:46 +02:00
|
|
|
set copyfile [remote_download host tmpdir/striprog]
|
1999-05-03 09:29:11 +02:00
|
|
|
} else {
|
|
|
|
set copyfile tmpdir/striprog
|
|
|
|
}
|
|
|
|
|
|
|
|
set exec_output [binutils_run $prog "$flags ${copyfile}"]
|
|
|
|
if ![string match "" $exec_output] {
|
|
|
|
fail $test
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if [is_remote host] {
|
2004-05-12 05:28:46 +02:00
|
|
|
remote_upload host ${copyfile} tmpdir/striprog
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
set result [remote_load target tmpdir/striprog]
|
2004-05-12 05:28:46 +02:00
|
|
|
set status [lindex $result 0]
|
2008-07-08 10:15:09 +02:00
|
|
|
if { ![istarget $host_triplet] } {
|
|
|
|
set status "pass"
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
if { $status != "pass" } {
|
|
|
|
fail $test
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
set exec_output [binutils_run $NM "$NMFLAGS ${copyfile}"]
|
2002-02-18 10:13:48 +01:00
|
|
|
if { [istarget mmix-knuth-mmixware] } {
|
|
|
|
# Whenever there's a symbol in the mmo format, there's the symbol
|
|
|
|
# Main, so remove it manually from the expected output for sake of
|
|
|
|
# this test.
|
|
|
|
|
|
|
|
# Using "" not {} to get the \n and \r translated.
|
|
|
|
regsub "^\[0-9a-fA-F\]+\[ \]+T Main\[\n\r\]+" $exec_output "" exec_output
|
|
|
|
}
|
|
|
|
|
2004-03-30 11:54:15 +02:00
|
|
|
if {![regexp {^([0-9a-fA-F]+)?[ ]+[TD] main} $exec_output] \
|
|
|
|
&& ![regexp {^([0-9a-fA-F]+)?[ ]+[TD] _main} $exec_output]} {
|
1999-05-03 09:29:11 +02:00
|
|
|
fail $test
|
|
|
|
return
|
|
|
|
}
|
|
|
|
pass $test
|
|
|
|
}
|
|
|
|
|
2008-05-29 09:07:21 +02:00
|
|
|
# Test keeping only debug symbols of an executable
|
|
|
|
|
|
|
|
proc keep_debug_symbols_and_test_copy { prog1 flags1 test1 prog2 flags2 test2 } {
|
|
|
|
global NM
|
|
|
|
global NMFLAGS
|
|
|
|
|
2009-04-02 15:47:44 +02:00
|
|
|
remote_file build delete tmpdir/striprog
|
2008-05-29 09:07:21 +02:00
|
|
|
remote_download build tmpdir/copyprog tmpdir/striprog
|
|
|
|
if [is_remote host] {
|
|
|
|
set copyfile [remote_download host tmpdir/striprog]
|
|
|
|
} else {
|
|
|
|
set copyfile tmpdir/striprog
|
|
|
|
}
|
|
|
|
|
|
|
|
set exec_output [binutils_run $prog1 "$flags1 ${copyfile}"]
|
|
|
|
if ![string match "" $exec_output] {
|
|
|
|
fail $test1
|
|
|
|
return
|
|
|
|
}
|
|
|
|
pass $test1
|
|
|
|
|
|
|
|
set exec_output [binutils_run $prog2 "$flags2 ${copyfile}"]
|
|
|
|
if ![string match "" $exec_output] {
|
|
|
|
fail $test2
|
|
|
|
return
|
|
|
|
}
|
|
|
|
pass $test2
|
|
|
|
}
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
set test1 "simple objcopy of executable"
|
|
|
|
set test2 "run objcopy of executable"
|
|
|
|
set test3 "run stripped executable"
|
|
|
|
set test4 "run stripped executable with saving a symbol"
|
2008-05-29 09:07:21 +02:00
|
|
|
set test5 "keep only debug data"
|
|
|
|
set test6 "simple objcopy of debug data"
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
switch [copy_setup] {
|
|
|
|
"1" {
|
|
|
|
# do nothing
|
|
|
|
}
|
|
|
|
"2" {
|
|
|
|
untested $test1
|
|
|
|
untested $test2
|
|
|
|
untested $test3
|
|
|
|
untested $test4
|
2008-05-29 09:07:21 +02:00
|
|
|
untested $test5
|
|
|
|
untested $test6
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
"3" {
|
2007-05-02 12:38:00 +02:00
|
|
|
copy_executable "$OBJCOPY" "$OBJCOPYFLAGS" "$test1" ""
|
|
|
|
unsupported $test2
|
|
|
|
unsupported $test3
|
|
|
|
unsupported $test4
|
2008-05-29 09:07:21 +02:00
|
|
|
unsupported $test5
|
|
|
|
unsupported $test6
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
"0" {
|
|
|
|
copy_executable "$OBJCOPY" "$OBJCOPYFLAGS" "$test1" "$test2"
|
|
|
|
strip_executable "$STRIP" "$STRIPFLAGS" "$test3"
|
|
|
|
strip_executable_with_saving_a_symbol "$STRIP" "-K main -K _main $STRIPFLAGS" "$test4"
|
2008-05-29 09:07:21 +02:00
|
|
|
keep_debug_symbols_and_test_copy "$STRIP" "--only-keep-debug $STRIPFLAGS" "$test5" \
|
|
|
|
"$OBJCOPY" "$OBJCOPYFLAGS" "$test6"
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
}
|
2005-10-19 19:39:43 +02:00
|
|
|
|
2005-10-20 19:06:41 +02:00
|
|
|
proc objcopy_test_readelf {testname srcfile} {
|
|
|
|
global OBJCOPY
|
|
|
|
global OBJCOPYFLAGS
|
|
|
|
global READELF
|
|
|
|
global srcdir
|
|
|
|
global subdir
|
|
|
|
|
|
|
|
if {![binutils_assemble $srcdir/$subdir/${srcfile} tmpdir/bintest.o]} then {
|
|
|
|
unresolved "objcopy ($testname)"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
verbose -log "$OBJCOPY $OBJCOPYFLAGS tmpdir/bintest.o tmpdir/copy.o"
|
2007-08-28 15:21:58 +02:00
|
|
|
set exec_output [remote_exec host "$OBJCOPY $OBJCOPYFLAGS tmpdir/bintest.o tmpdir/copy.o"]
|
|
|
|
if { [lindex $exec_output 0] != 0
|
|
|
|
|| ![string match "" [lindex $exec_output 1]] } then {
|
2005-10-20 19:06:41 +02:00
|
|
|
fail "objcopy ($testname)"
|
2006-05-01 06:01:25 +02:00
|
|
|
return
|
2005-10-20 19:06:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
verbose -log "$READELF -a tmpdir/bintest.o > tmpdir/bintest.o.out"
|
2007-08-28 15:21:58 +02:00
|
|
|
set exec_output [remote_exec host "$READELF -a tmpdir/bintest.o" "" "/dev/null" "tmpdir/bintest.o.out"]
|
|
|
|
if { [lindex $exec_output 0] != 0 } then {
|
|
|
|
unresolved "objcopy ($testname)"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
set exec_output [prune_warnings [lindex $exec_output 1]]
|
2005-10-20 19:06:41 +02:00
|
|
|
if ![string match "" $exec_output] then {
|
|
|
|
unresolved "objcopy ($testname)"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
verbose -log "$READELF -a tmpdir/copy.o > tmpdir/copy.o.out"
|
2007-08-28 15:21:58 +02:00
|
|
|
set exec_output [remote_exec host "$READELF -a tmpdir/copy.o" "" "/dev/null" "tmpdir/copy.o.out"]
|
|
|
|
if { [lindex $exec_output 0] != 0 } then {
|
|
|
|
unresolved "objcopy ($testname)"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
set exec_output [prune_warnings [lindex $exec_output 1]]
|
2005-10-20 19:06:41 +02:00
|
|
|
if ![string match "" $exec_output] then {
|
|
|
|
unresolved "objcopy ($testname)"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
verbose -log "diff tmpdir/bintest.o.out tmpdir/copy.o.out"
|
|
|
|
catch "exec diff tmpdir/bintest.o.out tmpdir/copy.o.out" exec_output
|
|
|
|
set exec_output [prune_warnings $exec_output]
|
|
|
|
|
|
|
|
if [string match "" $exec_output] then {
|
|
|
|
pass "objcopy ($testname)"
|
|
|
|
} else {
|
|
|
|
fail "objcopy ($testname)"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-10-19 19:39:43 +02:00
|
|
|
# ia64 specific tests
|
|
|
|
if { ([istarget "ia64-*-elf*"]
|
|
|
|
|| [istarget "ia64-*-linux*"]) } {
|
2005-10-19 22:49:03 +02:00
|
|
|
objcopy_test "ia64 link order" link-order.s
|
|
|
|
}
|
2005-10-19 19:39:43 +02:00
|
|
|
|
2005-10-19 22:49:03 +02:00
|
|
|
# ELF specific tests
|
|
|
|
if [is_elf_format] {
|
|
|
|
objcopy_test "ELF unknown section type" unknown.s
|
2005-10-20 19:06:41 +02:00
|
|
|
objcopy_test_readelf "ELF group" group.s
|
2008-10-01 23:54:59 +02:00
|
|
|
objcopy_test_readelf "ELF group" group-2.s
|
2008-10-02 01:10:48 +02:00
|
|
|
objcopy_test_readelf "ELF group" group-3.s
|
2008-10-02 03:06:12 +02:00
|
|
|
objcopy_test_readelf "ELF group" group-4.s
|
2010-02-18 01:13:30 +01:00
|
|
|
run_dump_test "group-5"
|
2011-09-16 06:23:19 +02:00
|
|
|
run_dump_test "group-6"
|
2006-05-01 16:09:35 +02:00
|
|
|
run_dump_test "copy-1"
|
2010-02-01 10:59:46 +01:00
|
|
|
run_dump_test "note-1"
|
2005-10-19 19:39:43 +02:00
|
|
|
}
|
2006-04-26 15:37:05 +02:00
|
|
|
|
|
|
|
run_dump_test "copy-2"
|
2006-05-03 16:21:18 +02:00
|
|
|
run_dump_test "copy-3"
|
2009-03-10 01:48:10 +01:00
|
|
|
run_dump_test "copy-4"
|
2006-06-23 18:23:09 +02:00
|
|
|
|
|
|
|
if [is_elf_format] {
|
2006-09-15 01:37:35 +02:00
|
|
|
run_dump_test "strip-1"
|
|
|
|
run_dump_test "strip-2"
|
2007-04-12 21:20:46 +02:00
|
|
|
run_dump_test "strip-3"
|
2008-10-01 23:54:59 +02:00
|
|
|
run_dump_test "strip-4"
|
|
|
|
run_dump_test "strip-5"
|
2008-10-02 01:10:48 +02:00
|
|
|
run_dump_test "strip-6"
|
|
|
|
run_dump_test "strip-7"
|
2008-10-02 03:06:12 +02:00
|
|
|
run_dump_test "strip-8"
|
|
|
|
run_dump_test "strip-9"
|
2010-09-23 14:04:37 +02:00
|
|
|
if { ![istarget "*-*-hpux*"]
|
|
|
|
&& ![istarget "msp*-*-*"] } {
|
|
|
|
run_dump_test "strip-10"
|
|
|
|
}
|
2007-04-24 12:56:58 +02:00
|
|
|
|
2007-05-15 06:23:50 +02:00
|
|
|
if { [istarget "i*86-*"] || [istarget "x86_64-*-*"] } {
|
|
|
|
# Check to make sure we don't strip a symbol named in relocations.
|
|
|
|
set test "objcopy keeps symbols needed by relocs"
|
2007-04-24 12:56:58 +02:00
|
|
|
|
2007-05-15 06:23:50 +02:00
|
|
|
set srcfile $srcdir/$subdir/needed-by-reloc.s
|
2007-04-24 12:56:58 +02:00
|
|
|
|
2007-05-15 06:23:50 +02:00
|
|
|
if {![binutils_assemble $srcfile tmpdir/bintest.o]} then {
|
|
|
|
unresolved $test
|
|
|
|
} else {
|
|
|
|
set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS --strip-symbol=foo tmpdir/bintest.o ${copyfile}.o"]
|
2007-04-24 12:56:58 +02:00
|
|
|
|
2007-05-15 06:23:50 +02:00
|
|
|
if [regexp "not stripping symbol `foo' because it is named in a relocation" $got] {
|
|
|
|
pass $test
|
|
|
|
} else {
|
|
|
|
fail $test
|
|
|
|
}
|
|
|
|
}
|
2007-04-24 12:56:58 +02:00
|
|
|
}
|
2007-05-15 06:23:50 +02:00
|
|
|
|
2012-03-13 01:41:22 +01:00
|
|
|
# The symbol table for some MIPS targets is sorted differently than
|
|
|
|
# the ELF canonical order, so the regexps in localize-hidden-1.d fail
|
|
|
|
# to match. These tests must be matched to targets for which
|
|
|
|
# targ_defvec=bfd_elf32_bigmips_vec,
|
|
|
|
# targ_defvec=bfd_elf32_littlemips_vec,
|
|
|
|
# targ_defvec=bfd_elf32_nbigmips_vec or
|
|
|
|
# targ_defvec=bfd_elf32_nlittlemips_vec in config.bfd. When syncing,
|
|
|
|
# don't forget that earlier case-matches trump later ones.
|
2013-11-27 10:11:06 +01:00
|
|
|
if { ![istarget "mips*-sde-elf*"] && ![istarget "mips*-mti-elf*"]
|
|
|
|
&& ![istarget "mips64*-*-openbsd*"] } {
|
2012-03-13 01:41:22 +01:00
|
|
|
setup_xfail "mips*-*-irix5*" "mips*-*-irix6*" "mips*-*-elf*" \
|
|
|
|
"mips*-*-rtems*" "mips*-*-windiss" "mips*-*-none" \
|
|
|
|
"mips*-*-openbsd*" "mips*-*-chorus*"
|
|
|
|
}
|
2007-05-15 06:23:50 +02:00
|
|
|
run_dump_test "localize-hidden-1"
|
2009-07-16 23:10:49 +02:00
|
|
|
run_dump_test "testranges"
|
|
|
|
run_dump_test "testranges-ia64"
|
2010-01-20 01:09:13 +01:00
|
|
|
|
|
|
|
run_dump_test "add-section"
|
|
|
|
run_dump_test "add-empty-section"
|
2010-05-18 05:31:07 +02:00
|
|
|
|
|
|
|
run_dump_test "exclude-1a"
|
|
|
|
run_dump_test "exclude-1b"
|
2007-04-24 12:56:58 +02:00
|
|
|
}
|
2007-05-15 06:23:50 +02:00
|
|
|
run_dump_test "localize-hidden-2"
|