1 # Copyright
1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3 # Free Software Foundation
, Inc.
5 # This
program is free software
; you can redistribute it and
/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation
; either version
3 of the License
, or
8 #
(at your option
) any later version.
10 # This
program is distributed in the hope that it will be useful
,
11 # but WITHOUT
ANY WARRANTY
; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License
for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this
program; if not
, write to the Free Software
17 # Foundation
, Inc.
, 51 Franklin Street
- Fifth Floor
, Boston
, MA
02110-1301, USA.
19 # Please email
any bugs
, comments
, and
/or additions to this file to
:
20 # bug
-dejagnu@prep.ai.mit.edu
22 # Written by Ian Lance Taylor
<ian@cygnus.com
>
24 if ![is_remote host
] {
25 if {[which $OBJCOPY
] == 0} then {
26 perror
"$OBJCOPY does not exist"
31 send_user
"Version [binutil_version $OBJCOPY]"
33 if ![is_remote host
] {
34 set tempfile tmpdir
/bintest.o
35 set copyfile tmpdir
/copy
37 set tempfile
[remote_download host tmpdir
/bintest.o
]
41 # Test that objcopy does not modify a file when copying it.
43 proc objcopy_test
{testname srcfile
} {
51 if {![binutils_assemble $srcdir
/$subdir
/$
{srcfile
} tmpdir
/bintest.o
]} then {
52 perror
"unresolved $testname"
53 unresolved
"objcopy ($testname)"
57 set got
[binutils_run $OBJCOPY
"$OBJCOPYFLAGS $tempfile ${copyfile}.o"]
59 if ![string match
"" $got] then {
60 fail
"objcopy ($testname)"
62 send_log
"cmp $tempfile ${copyfile}.o\n"
63 verbose
"cmp $tempfile ${copyfile}.o"
65 set src1 tmpdir
/bintest.o
66 set src2 tmpdir
/copy.o
67 remote_upload host $tempfile $src1
68 remote_upload host $
{copyfile
}.o $src2
71 set src2 $
{copyfile
}.o
73 set status [remote_exec build cmp
"${src1} ${src2}"]
74 set exec_output
[lindex $
status 1]
75 set exec_output
[prune_warnings $exec_output
]
77 #
On some systems the result of objcopy will not be identical.
78 # Usually this is just because gas isn
't using bfd to write the
79 # files in the first place, and may order things a little
80 # differently. Those systems should use setup_xfail here.
82 setup_xfail "h8300-*-rtems*" "h8300-*-coff"
83 setup_xfail "h8500-*-rtems*" "h8500-*-coff"
84 setup_xfail "hppa*-*-*"
86 setup_xfail "m68*-*-*coff" "m68*-*-hpux*" "m68*-*-lynxos*"
87 setup_xfail "m68*-*-sysv*" "m68*-apple-aux*"
89 setup_xfail "or32-*-rtems*" "or32-*-coff"
90 setup_xfail "sh-*-coff*" "sh-*-rtems*"
91 setup_xfail "tic4x-*-*" "tic80-*-*" "w65-*"
93 clear_xfail "hppa*64*-*-hpux*" "hppa*-*-linux*" "hppa*-*-lites*"
94 clear_xfail "hppa*-*-*n*bsd*" "hppa*-*-rtems*" "*-*-*elf*"
95 clear_xfail "m68*-*-sysv4*"
97 if [string match "" $exec_output] then {
98 pass "objcopy ($testname)"
100 send_log "$exec_output\n"
101 verbose "$exec_output" 1
103 # On OSF/1, this succeeds with gas and fails with /bin/as.
104 setup_xfail "alpha*-*-osf*"
106 fail "objcopy ($testname)"
111 objcopy_test "simple copy" bintest.s
113 # Test reversing bytes in a section.
115 set reversed ${tempfile}-reversed
116 set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -j .data --reverse-bytes=4 $tempfile $reversed"]
118 if ![string match "" $got] then {
119 fail "objcopy --reverse-bytes"
121 if [is_remote host] {
122 remote_upload host ${reversed} tmpdir/copy-reversed.o
123 set reversed tmpdir/copy-reversed.o
126 set origdata [binutils_run $OBJDUMP "$OBJDUMPFLAGS -s -j .data $tempfile"]
127 set revdata [binutils_run $OBJDUMP "$OBJDUMPFLAGS -s -j .data $reversed"]
129 set want "^ \[0-9\]+ (\[0-9\]+)"
130 set found_orig [regexp -lineanchor $want $origdata -> origdata]
131 set found_rev [regexp -lineanchor $want $revdata -> revdata]
133 if {$found_orig == 0 || $found_rev == 0} then {
134 fail "objcopy --reverse-bytes"
136 scan $origdata "%2x%2x%2x%2x" b1 b2 b3 b4
137 scan $revdata "%2x%2x%2x%2x" c4 c3 c2 c1
139 if {$b1 == $c1 && $b2 == $c2 && $b3 == $c3 && $b4 == $c4} then {
140 pass "objcopy --reverse-bytes"
142 fail "objcopy --reverse-bytes"
147 # Test generating S records.
149 # We make the srec filename 8.3 compatible. Note that the header string
150 # matched against depends on the name of the file. Ugh.
152 if [is_remote host] {
153 set srecfile copy.sre
154 set header_string S00B0000636F70792E737265C1
156 set srecfile ${copyfile}.srec
157 set header_string S0130000746D706469722F636F70792E7372656397
160 set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec $tempfile ${srecfile}"]
162 if ![string match "" $got] then {
163 fail "objcopy -O srec"
165 if [is_remote host] {
166 remote_upload host ${srecfile} tmpdir/copy.srec
167 set srecfile tmpdir/copy.srec
169 set file [open ${srecfile} r]
171 # The first S record is fixed by the file name we are using.
175 if ![regexp "$header_string.*" $line] {
176 send_log "bad header\n"
177 fail "objcopy -O srec"
179 while {[gets $file line] != -1 \
180 && [regexp "^S\[123\]\[0-9a-fA-F\]+\[\r\n\]*$" $line]} {
187 if ![regexp "^S\[789\]\[0-9a-fA-F\]+\[\r\n\]*$" $line] then {
188 send_log "bad trailer\n"
189 fail "objcopy -O srec"
191 if {[gets $file line] != -1} then {
192 send_log "garbage at end\n"
195 fail "objcopy -O srec"
197 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -f ${copyfile}.srec"]
198 if ![regexp "file format srec" $got] then {
199 send_log "objdump failed\n"
200 fail "objcopy -O srec"
202 pass "objcopy -O srec"
211 # Test setting and adjusting the start address. We only test this
212 # while generating S records, because we may not be able to set the
213 # start address for other object file formats, and the S record case
214 # is the only useful one anyhow.
216 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -f $tempfile"]
217 if ![regexp "start address (\[0-9a-fA-FxX\]+)" $got all origstart] then {
218 perror "objdump can not recognize bintest.o"
221 set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec --set-start 0x7654 $tempfile ${copyfile}.srec"]
222 if ![string match "" $got] then {
223 fail "objcopy --set-start"
225 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -f ${copyfile}.srec"]
226 if ![regexp "file format srec.*start address (\[0-9a-fA-FxX\]+)" $got all srecstart] then {
227 fail "objcopy --set-start"
229 if {$srecstart != 0x7654} then {
230 send_log "$srecstart != 0x7654\n"
231 fail "objcopy --set-start"
233 pass "objcopy --set-start"
238 set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec --adjust-start 0x123 $tempfile ${copyfile}.srec"]
239 if ![string match "" $got] then {
240 fail "objcopy --adjust-start"
242 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -f ${copyfile}.srec"]
243 if ![regexp "file format srec.*start address (\[0-9a-fA-FxX\]+)" $got all srecstart] then {
244 fail "objcopy --adjust-start"
246 if {$srecstart != $origstart + 0x123} then {
247 send_log "$srecstart != $origstart + 0x123\n"
248 fail "objcopy --adjust-start"
250 pass "objcopy --adjust-start"
256 # Test adjusting the overall VMA, and adjusting the VMA of a
257 # particular section. We again only test this when generating S
263 set headers [binutils_run $OBJDUMP "$OBJDUMPFLAGS -h $tempfile"]
265 set headers_regexp "\[ 0-9\]+(\[^ \]+)\[ \]*(\[0-9a-fA-F\]+)\[ \]+\[0-9a-fA-F\]+\[ \]+(\[0-9a-fA-F\]+)\[ \]+\[0-9a-fA-F\]+\[ \]+2\[*\]\[*\]\[0-9\]+(.*)"
268 while {[regexp $headers_regexp $got all name size vma rest]} {
272 if {$low == "" || $vma < $low} {
280 if {$low == "" || $origstart == ""} then {
281 perror "objdump can not recognize bintest.o"
283 set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec --adjust-vma 0x123 $tempfile ${copyfile}.srec"]
284 if ![string match "" $got] then {
285 fail "objcopy --adjust-vma"
287 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -fh ${copyfile}.srec"]
288 set want "file format srec.*start address\[ \]*(\[0-9a-fA-FxX\]+).*sec1\[ \]+\[0-9a-fA-F\]+\[ \]+(\[0-9a-fA-F\]+)"
289 if ![regexp $want $got all start vma] then {
290 fail "objcopy --adjust-vma"
293 if {$vma != $low + 0x123} then {
294 send_log "$vma != $low + 0x123\n"
295 fail "objcopy --adjust-vma"
297 if {$start != $origstart + 0x123} then {
298 send_log "$start != $origstart + 0x123\n"
299 fail "objcopy --adjust-vma"
301 pass "objcopy --adjust-vma"
309 while {[regexp $headers_regexp $got all name size vma rest]} {
311 if {$vma == $low} then {
312 set arg "$arg --adjust-section-vma $name+4"
317 set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec $arg $tempfile ${copyfile}.srec"]
318 if ![string match "" $got] then {
319 fail "objcopy --adjust-section-vma +"
321 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -h ${copyfile}.srec"]
322 set want "file format srec.*sec1\[ \]+\[0-9a-fA-F\]+\[ \]+(\[0-9a-fA-F\]+)"
323 if ![regexp $want $got all vma] then {
324 fail "objcopy --adjust-section-vma +"
327 if {$vma != $low + 4} then {
328 send_log "$vma != $low + 4\n"
329 fail "objcopy --adjust-section-vma +"
331 pass "objcopy --adjust-section-vma +"
336 regsub -all "\\+4" $arg "=[expr $low + 4]" argeq
337 set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec $argeq $tempfile ${copyfile}.srec"]
338 if ![string match "" $got] then {
339 fail "objcopy --adjust-section-vma ="
341 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -h ${copyfile}.srec"]
342 set want "file format srec.*sec1\[ \]+\[0-9a-fA-F\]+\[ \]+(\[0-9a-fA-F\]+)"
343 if ![regexp $want $got all vma] then {
344 fail "objcopy --adjust-section-vma ="
347 if {$vma != $low + 4} then {
348 send_log "$vma != $low + 4\n"
349 fail "objcopy --adjust-section-vma ="
351 pass "objcopy --adjust-section-vma ="
357 # Test stripping an object.
359 proc strip_test { } {
371 if { [target_compile $srcdir/$subdir/testprog.c tmpdir/testprog.o object debug] != "" } {
376 if [is_remote host] {
377 set archive libstrip.a
378 set objfile [remote_download host tmpdir/testprog.o]
379 remote_file host delete $archive
381 set archive tmpdir/libstrip.a
382 set objfile tmpdir/testprog.o
385 remote_file build delete tmpdir/libstrip.a
387 set exec_output [binutils_run $AR "rc $archive ${objfile}"]
388 if ![string match "" $exec_output] {
393 set exec_output [binutils_run $STRIP "-g $archive"]
394 if ![string match "" $exec_output] {
399 set exec_output [binutils_run $STRIP "$STRIPFLAGS $archive"]
400 if ![string match "" $exec_output] {
405 if { [target_compile $srcdir/$subdir/testprog.c tmpdir/testprog.o object debug] != "" } {
410 if [is_remote host] {
411 set objfile [remote_download host tmpdir/testprog.o]
413 set objfile tmpdir/testprog.o
416 set exec_output [binutils_run $STRIP "$STRIPFLAGS $objfile"]
417 if ![string match "" $exec_output] {
422 set exec_output [binutils_run $NM "-a $NMFLAGS $objfile"]
423 if ![string match "*: no symbols*" $exec_output] {
433 # Test stripping an object file with saving a symbol
435 proc strip_test_with_saving_a_symbol { } {
444 set test "strip with saving a symbol"
446 if { [target_compile $srcdir/$subdir/testprog.c tmpdir/testprog.o object debug] != "" } {
451 if [is_remote host] {
452 set objfile [remote_download host tmpdir/testprog.o]
454 set objfile tmpdir/testprog.o
457 set exec_output [binutils_run $STRIP "$STRIPFLAGS -K main -K _main $objfile"]
458 if ![string match "" $exec_output] {
463 set exec_output [binutils_run $NM "$NMFLAGS $objfile"]
464 if {![regexp {^([0-9a-fA-F]+)?[ ]+[TD] main} $exec_output] \
465 && ![regexp {^([0-9a-fA-F]+)?[ ]+T _main} $exec_output]} {
473 strip_test_with_saving_a_symbol
475 # Build a final executable.
477 if { [istarget *-*-cygwin] || [istarget *-*-mingw*] } {
478 set test_prog "testprog.exe"
480 set test_prog "testprog"
483 proc copy_setup { } {
489 set res [build_wrapper testglue.o]
492 if { [istarget *-*-uclinux*] } {
497 lappend flags "additional_flags=[lindex $res 1]"
498 set add_libs "testglue.o"
503 if { [istarget *-*-linux*] } {
504 foreach i $gcc_gas_flag {
505 set flags "additional_flags=$i $flags"
508 if { [target_compile "$srcdir/$subdir/testprog.c $add_libs" tmpdir/$test_prog executable $flags] != "" } {
512 set result [remote_load target tmpdir/$test_prog]
513 set status [lindex $result 0]
515 if { $status != "pass" } {
516 send_log "cannot run executable, status = ${status}\n"
523 # Test copying an executable.
525 proc copy_executable { prog flags test1 test2 } {
528 if [is_remote host] {
529 set testfile [remote_download host tmpdir/$test_prog]
530 set testcopy copyprog
532 set testfile tmpdir/$test_prog
533 set testcopy tmpdir/copyprog
535 remote_file host delete $testcopy
537 set exec_output [binutils_run $prog "$flags $testfile $testcopy"]
539 if ![string match "" $exec_output] {
541 if [string match "" $test2] {
548 if [is_remote host] {
549 remote_upload host $testcopy tmpdir/copyprog
552 set status [remote_exec build "cmp" "tmpdir/$test_prog tmpdir/copyprog"]
553 set exec_output [lindex $status 1]
555 if [string match "" $exec_output] then {
558 send_log "$exec_output\n"
559 verbose "$exec_output"
561 # This will fail for many reasons. For example, it will most
562 # likely fail if a non-GNU linker is used. Therefore, we do
563 # not insist that it pass. If you are using an assembler and
564 # linker based on the same BFD as objcopy, it is worth
565 # investigating to see why this failure occurs. If we are
566 # cross compiling, we assume that a GNU linker is being used,
567 # and expect it to succeed.
568 if {[isnative]} then {
572 # This also fails for mips*-*-elf targets. See elf32-mips.c
573 # mips_elf_sym_is_global.
574 setup_xfail "mips*-*-elf"
576 setup_xfail "*arm*-*-coff"
577 setup_xfail "xscale-*-coff"
578 setup_xfail "arm*-*-pe"
579 setup_xfail "thumb*-*-coff"
580 setup_xfail "thumb*-*-pe"
585 if [string match "" $test2] {
589 set output [remote_load target tmpdir/copyprog]
590 set status [lindex $output 0]
591 if { $status != "pass" } {
598 # Test stripping an executable
600 proc strip_executable { prog flags test } {
604 remote_download build tmpdir/copyprog tmpdir/striprog
605 if [is_remote host] {
606 set copyfile [remote_download host tmpdir/striprog]
608 set copyfile tmpdir/striprog
611 set exec_output [binutils_run $prog "$flags ${copyfile}"]
612 if ![string match "" $exec_output] {
617 if [is_remote host] {
618 remote_upload host ${copyfile} tmpdir/striprog
621 set result [remote_load target tmpdir/striprog]
622 set status [lindex $result 0]
623 if { $status != "pass" } {
628 set exec_output [binutils_run $NM "$NMFLAGS ${copyfile}"]
629 if ![string match "*: no symbols*" $exec_output] {
636 # Test stripping an executable with saving a symbol
638 proc strip_executable_with_saving_a_symbol { prog flags test } {
642 remote_download build tmpdir/copyprog tmpdir/striprog
643 if [is_remote host] {
644 set copyfile [remote_download host tmpdir/striprog]
646 set copyfile tmpdir/striprog
649 set exec_output [binutils_run $prog "$flags ${copyfile}"]
650 if ![string match "" $exec_output] {
655 if [is_remote host] {
656 remote_upload host ${copyfile} tmpdir/striprog
659 set result [remote_load target tmpdir/striprog]
660 set status [lindex $result 0]
661 if { $status != "pass" } {
666 set exec_output [binutils_run $NM "$NMFLAGS ${copyfile}"]
667 if { [istarget mmix-knuth-mmixware] } {
668 # Whenever there's a symbol in the mmo format
, there
's the symbol
669 # Main, so remove it manually from the expected output for sake of
672 # Using "" not {} to get the \n and \r translated.
673 regsub "^\[0-9a-fA-F\]+\[ \]+T Main\[\n\r\]+" $exec_output "" exec_output
676 if {![regexp {^([0-9a-fA-F]+)?[ ]+[TD] main} $exec_output] \
677 && ![regexp {^([0-9a-fA-F]+)?[ ]+[TD] _main} $exec_output]} {
684 set test1 "simple objcopy of executable"
685 set test2 "run objcopy of executable"
686 set test3 "run stripped executable"
687 set test4 "run stripped executable with saving a symbol"
689 switch [copy_setup] {
700 copy_executable "$OBJCOPY" "$OBJCOPYFLAGS" "$test1" ""
706 copy_executable "$OBJCOPY" "$OBJCOPYFLAGS" "$test1" "$test2"
707 strip_executable "$STRIP" "$STRIPFLAGS" "$test3"
708 strip_executable_with_saving_a_symbol "$STRIP" "-K main -K _main $STRIPFLAGS" "$test4"
712 proc objcopy_test_readelf {testname srcfile} {
719 if {![binutils_assemble $srcdir/$subdir/${srcfile} tmpdir/bintest.o]} then {
720 unresolved "objcopy ($testname)"
724 verbose -log "$OBJCOPY $OBJCOPYFLAGS tmpdir/bintest.o tmpdir/copy.o"
725 catch "exec $OBJCOPY $OBJCOPYFLAGS tmpdir/bintest.o tmpdir/copy.o" exec_output
726 if ![string match "" $exec_output] then {
727 fail "objcopy ($testname)"
731 verbose -log "$READELF -a tmpdir/bintest.o > tmpdir/bintest.o.out"
732 catch "exec $READELF -a tmpdir/bintest.o > tmpdir/bintest.o.out" exec_output
733 set exec_output [prune_warnings $exec_output]
734 if ![string match "" $exec_output] then {
735 unresolved "objcopy ($testname)"
739 verbose -log "$READELF -a tmpdir/copy.o > tmpdir/copy.o.out"
740 catch "exec $READELF -a tmpdir/copy.o > tmpdir/copy.o.out" exec_output
741 set exec_output [prune_warnings $exec_output]
742 if ![string match "" $exec_output] then {
743 unresolved "objcopy ($testname)"
747 verbose -log "diff tmpdir/bintest.o.out tmpdir/copy.o.out"
748 catch "exec diff tmpdir/bintest.o.out tmpdir/copy.o.out" exec_output
749 set exec_output [prune_warnings $exec_output]
751 if [string match "" $exec_output] then {
752 pass "objcopy ($testname)"
754 fail "objcopy ($testname)"
758 # ia64 specific tests
759 if { ([istarget "ia64-*-elf*"]
760 || [istarget "ia64-*-linux*"]) } {
761 objcopy_test "ia64 link order" link-order.s
766 objcopy_test "ELF unknown section type" unknown.s
767 objcopy_test_readelf "ELF group" group.s
768 run_dump_test "copy-1"
771 run_dump_test "copy-2"
772 run_dump_test "copy-3"
775 run_dump_test "strip-1"
776 run_dump_test "strip-2"
777 run_dump_test "strip-3"
779 if { [istarget "i*86-*"] || [istarget "x86_64-*-*"] } {
780 # Check to make sure we don't
strip a symbol named in relocations.
781 set test
"objcopy keeps symbols needed by relocs"
783 set srcfile $srcdir
/$subdir
/needed
-by
-reloc.s
785 if {![binutils_assemble $srcfile tmpdir
/bintest.o
]} then {
788 set got
[binutils_run $OBJCOPY
"$OBJCOPYFLAGS --strip-symbol=foo tmpdir/bintest.o ${copyfile}.o"]
790 if [regexp
"not stripping symbol `foo' because it is named in a relocation" $got] {
798 run_dump_test
"localize-hidden-1"
800 run_dump_test
"localize-hidden-2"