]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - binutils/testsuite/binutils-all/objcopy.exp
Add Visium support to binutils
[thirdparty/binutils-gdb.git] / binutils / testsuite / binutils-all / objcopy.exp
index 1c40e0a6682b0e93c8d7f76640344e63ad70c06a..c83825a3d104134260687c6c59e91ef5b66589c1 100644 (file)
@@ -1,8 +1,8 @@
-#   Copyright (C) 1994, 95, 96, 97, 1998 Free Software Foundation, Inc.
+#   Copyright (C) 1994-2014 Free Software Foundation, Inc.
 
 # 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
-# the Free Software Foundation; either version 2 of the License, or
+# the Free Software Foundation; either version 3 of the License, or
 # (at your option) any later version.
 # 
 # This program is distributed in the hope that it will be useful,
@@ -12,7 +12,7 @@
 # 
 # You should have received a copy of the GNU General Public License
 # along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
 
 # Please email any bugs, comments, and/or additions to this file to:
 # bug-dejagnu@prep.ai.mit.edu
@@ -28,15 +28,9 @@ if ![is_remote host] {
 
 send_user "Version [binutil_version $OBJCOPY]"
 
-if {![binutils_assemble $srcdir/$subdir/bintest.s tmpdir/bintest.o]} then {
-    perror "unresolved 1"
-    unresolved "objcopy (simple copy)"
-    return
-}
-
 if ![is_remote host] {
-    set tempfile tmpdir/bintest.o;
-    set copyfile tmpdir/copy;
+    set tempfile tmpdir/bintest.o
+    set copyfile tmpdir/copy
 } else {
     set tempfile [remote_download host tmpdir/bintest.o]
     set copyfile copy
@@ -44,60 +38,148 @@ if ![is_remote host] {
 
 # Test that objcopy does not modify a file when copying it.
 
-set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS $tempfile ${copyfile}.o"]
+proc objcopy_test {testname srcfile} {
+    global OBJCOPY
+    global OBJCOPYFLAGS
+    global srcdir
+    global subdir
+    global tempfile
+    global copyfile
+
+    if {![binutils_assemble $srcdir/$subdir/${srcfile} tmpdir/bintest.o]} then {
+       perror "unresolved $testname"
+       unresolved "objcopy ($testname)"
+       return
+    }
+
+    set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS $tempfile ${copyfile}.o"]
+
+    if ![string match "" $got] then {
+       fail "objcopy ($testname)"
+    } else {
+       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.
+
+       setup_xfail "h8300-*-coff"
+       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 "sh-*-coff*"
+       setup_xfail "tic80-*-*" "w65-*"
+
+       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
+
+           # On OSF/1, this succeeds with gas and fails with /bin/as.
+           setup_xfail "alpha*-*-osf*"
+
+           fail "objcopy ($testname)"
+       }
+    }
+}
+
+objcopy_test "simple copy" bintest.s
+
+# 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 (simple copy)"
+    fail "objcopy --reverse-bytes"
 } else {
-    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
+        remote_upload host ${reversed} tmpdir/copy-reversed.o
+        set reversed tmpdir/copy-reversed.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.
-
-    setup_xfail "sh-*-coff" "sh-*-hms" 
-    setup_xfail "m68*-*-hpux*" "m68*-*-sunos*" "m68*-*-coff" "m68*-*-vxworks*"
-    setup_xfail "m68*-ericsson-ose" "m68k*-motorola-sysv*"
-    setup_xfail "i*86-*-linuxaout*" "i*86-*-aout*"
-    setup_xfail "i*86-*-sysv3" "i*86-*-isc*" "i*86-*-sco*" "i*86-*-coff"
-    setup_xfail "i*86-*-aix*" "i*86-*-go32*" "i*86-*-msdos*"
-    setup_xfail "a29k-*-udi" "a29k-*-coff" "a29k-*-vxworks*"
-    setup_xfail "i960-*-coff"
-    setup_xfail "h8300-*-hms" "h8300-*-coff"
-    setup_xfail "h8500-*-hms" "h8500-*-coff"
-    setup_xfail "hppa*-*-*"
-    clear_xfail "hppa*-*-*elf*"
-    setup_xfail "m88*-*-coff" "m88*-motorola-sysv*"
-    setup_xfail "z8*-*-coff"
+    set origdata [binutils_run $OBJDUMP "$OBJDUMPFLAGS -s -j .data $tempfile"]
+    set revdata [binutils_run $OBJDUMP "$OBJDUMPFLAGS -s -j .data $reversed"]
 
-    if [string match "" $exec_output] then {
-       pass "objcopy (simple copy)"
+    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 {
+       # som doesn't have a .data section
+       setup_xfail "hppa*-*-hpux*"
+       clear_xfail "hppa*64*-*-hpux*"
+
+        fail "objcopy --reverse-bytes"
     } else {
-       send_log "$exec_output\n"
-       verbose "$exec_output" 1
+        scan $origdata "%2x%2x%2x%2x" b1 b2 b3 b4
+        scan $revdata "%2x%2x%2x%2x" c4 c3 c2 c1
 
-       # On OSF/1, this succeeds with gas and fails with /bin/as.
-       setup_xfail "alpha*-*-osf*"
+        if {$b1 == $c1 && $b2 == $c2 && $b3 == $c3 && $b4 == $c4} then {
+            pass "objcopy --reverse-bytes"
+        } else {
+            fail "objcopy --reverse-bytes"
+        }
+    }
+}
+
+# Test interleaved copy of multiple byte width
 
-       # This fails for COFF i960-vxworks targets.
-       setup_xfail "i960-*-vxworks*"
+set sequence_file sequence_file
+set file [open ${sequence_file} w]
+puts ${file} "12345678"
+close ${file}
 
-       fail "objcopy (simple copy)"
+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
 }
 
 # Test generating S records.
@@ -119,8 +201,8 @@ if ![string match "" $got] then {
     fail "objcopy -O srec"
 } else {
     if [is_remote host] {
-       remote_upload host ${srecfile} tmpdir/copy.srec;
-       set srecfile tmpdir/copy.srec;
+       remote_upload host ${srecfile} tmpdir/copy.srec
+       set srecfile tmpdir/copy.srec
     }
     set file [open ${srecfile} r]
 
@@ -150,7 +232,7 @@ if ![string match "" $got] then {
                verbose $line
                fail "objcopy -O srec"
            } else {
-               set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -f ${copyfile}.srec"]
+               set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -f ${srecfile}"]
                if ![regexp "file format srec" $got] then {
                    send_log "objdump failed\n"
                    fail "objcopy -O srec"
@@ -174,7 +256,7 @@ if ![regexp "start address (\[0-9a-fA-FxX\]+)" $got all origstart] then {
     perror "objdump can not recognize bintest.o"
     set origstart ""
 } else {
-    set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec $tempfile ${copyfile}.srec --set-start 0x7654"]
+    set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec --set-start 0x7654 $tempfile ${copyfile}.srec"]
     if ![string match "" $got] then {
        fail "objcopy --set-start"
     } else {
@@ -191,7 +273,7 @@ if ![regexp "start address (\[0-9a-fA-FxX\]+)" $got all origstart] then {
        }
     }
 
-    set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec $tempfile ${copyfile}.srec --adjust-start 0x123"]
+    set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec --adjust-start 0x123 $tempfile ${copyfile}.srec"]
     if ![string match "" $got] then {
        fail "objcopy --adjust-start"
     } else {
@@ -236,7 +318,7 @@ while {[regexp $headers_regexp $got all name size vma rest]} {
 if {$low == "" || $origstart == ""} then {
     perror "objdump can not recognize bintest.o"
 } else {
-    set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec $tempfile ${copyfile}.srec --adjust-vma 0x123"]
+    set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec --adjust-vma 0x123 $tempfile ${copyfile}.srec"]
     if ![string match "" $got] then {
         fail "objcopy --adjust-vma"
     } else {
@@ -270,7 +352,7 @@ if {$low == "" || $origstart == ""} then {
        set got $rest
     }
 
-    set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec $tempfile ${copyfile}.srec $arg"]
+    set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec $arg $tempfile ${copyfile}.srec"]
     if ![string match "" $got] then {
        fail "objcopy --adjust-section-vma +"
     } else {
@@ -290,7 +372,7 @@ if {$low == "" || $origstart == ""} then {
     }
 
     regsub -all "\\+4" $arg "=[expr $low + 4]" argeq
-    set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec $tempfile ${copyfile}.srec $argeq"]
+    set got [binutils_run $OBJCOPY "$OBJCOPYFLAGS -O srec $argeq $tempfile ${copyfile}.srec"]
     if ![string match "" $got] then {
        fail "objcopy --adjust-section-vma ="
     } else {
@@ -313,6 +395,7 @@ if {$low == "" || $origstart == ""} then {
 # Test stripping an object.
 
 proc strip_test { } {
+    global AR
     global CC
     global STRIP
     global STRIPFLAGS
@@ -320,6 +403,7 @@ proc strip_test { } {
     global NMFLAGS
     global srcdir
     global subdir
+    global READELF
 
     set test "strip"
 
@@ -328,8 +412,74 @@ proc strip_test { } {
        return
     }
 
+    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
+       }
+    }
+
+    if [is_remote host] {
+       set archive libstrip.a
+       set objfile [remote_download host tmpdir/testprog.o]
+       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
+       unresolved "$test preserving OS/ABI"    
+       return
+    }
+
+    set exec_output [binutils_run $STRIP "-g $archive"]
+    if ![string match "" $exec_output] {
+       fail $test
+       unresolved "$test preserving OS/ABI"    
+       return
+    }
+
+    set exec_output [binutils_run $STRIP "$STRIPFLAGS $archive"]
+    if ![string match "" $exec_output] {
+       fail $test
+       unresolved "$test preserving OS/ABI"    
+       return
+    }
+
+    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"
+           }
+       }
+    }
+
+    if { [target_compile $srcdir/$subdir/testprog.c tmpdir/testprog.o object debug] != "" } {
+       untested $test
+       return
+    }
+
     if [is_remote host] {
-       set objfile [remote_download host tmpdir/testprog.o];
+       set objfile [remote_download host tmpdir/testprog.o]
     } else {
        set objfile tmpdir/testprog.o
     }
@@ -370,7 +520,7 @@ proc strip_test_with_saving_a_symbol { } {
     }
 
     if [is_remote host] {
-       set objfile [remote_download host tmpdir/testprog.o];
+       set objfile [remote_download host tmpdir/testprog.o]
     } else {
        set objfile tmpdir/testprog.o
     }
@@ -382,7 +532,7 @@ proc strip_test_with_saving_a_symbol { } {
     }
 
     set exec_output [binutils_run $NM "$NMFLAGS $objfile"]
-    if {![regexp {^([0-9a-fA-F]+)?[ ]+T main} $exec_output] \
+    if {![regexp {^([0-9a-fA-F]+)?[ ]+[TD] main} $exec_output] \
          && ![regexp {^([0-9a-fA-F]+)?[ ]+T _main} $exec_output]} {
        fail $test
        return
@@ -395,30 +545,52 @@ strip_test_with_saving_a_symbol
 
 # Build a final executable.
 
+if { [istarget *-*-cygwin] || [istarget *-*-mingw*] } {
+    set test_prog "testprog.exe"
+} else {
+    set test_prog "testprog"
+}
+
 proc copy_setup { } {
     global srcdir
     global subdir
+    global gcc_gas_flag
+    global test_prog
+    global host_triplet
+    
+    set res [build_wrapper testglue.o]
+    set flags { debug }
     
-    set res [build_wrapper testglue.o];
-    set flags { debug };
+    if { [istarget *-*-uclinux*] && ![istarget tic6x-*-*] } {
+       return 1
+    }
     
     if { $res != "" } {
-       lappend flags "additional_flags=[lindex $res 1]";
-       set add_libs "testglue.o";
+       lappend flags "additional_flags=[lindex $res 1]"
+       set add_libs "testglue.o"
     } else {
-       set add_libs "";
+       set add_libs ""
     }
 
-    if { [target_compile "$srcdir/$subdir/testprog.c $add_libs" tmpdir/testprog executable $flags]  != "" } {
+    if { [istarget *-*-linux*]
+        || [istarget *-*-gnu*] } {
+       foreach i $gcc_gas_flag {
+           set flags "additional_flags=$i $flags"
+       }
+    }
+    if { [target_compile "$srcdir/$subdir/testprog.c $add_libs" tmpdir/$test_prog executable $flags]  != "" } {
        return 2
     }
 
-    set result [remote_load target tmpdir/testprog];
-    set status [lindex $result 0];
+    set result [remote_load target tmpdir/$test_prog]
+    set status [lindex $result 0]
 
     if { $status != "pass"  } {
-       perror "unresolved setup, status = $status"
-       return 3
+       send_log "cannot run executable, status = ${status} on ${host_triplet}\n"
+       if { [istarget $host_triplet] } {
+         return 3
+       }
+      set status "pass"
     }
 
     return 0
@@ -427,20 +599,25 @@ proc copy_setup { } {
 # Test copying an executable.
 
 proc copy_executable { prog flags test1 test2 } {
+    global test_prog
+    global host_triplet
 
     if [is_remote host] {
-       set testfile [remote_download host tmpdir/testprog];
+       set testfile [remote_download host tmpdir/$test_prog]
        set testcopy copyprog
     } else {
-       set testfile tmpdir/testprog
+       set testfile tmpdir/$test_prog
        set testcopy tmpdir/copyprog
     }
-    remote_file host delete $testcopy;
+    remote_file host delete $testcopy
 
     set exec_output [binutils_run $prog "$flags $testfile $testcopy"]
 
     if ![string match "" $exec_output] {
        fail $test1
+       if [string match "" $test2] {
+           return
+       }
        fail $test2
        return
     }
@@ -449,8 +626,8 @@ proc copy_executable { prog flags test1 test2 } {
        remote_upload host $testcopy tmpdir/copyprog
     }
 
-    set status [remote_exec build "cmp" "tmpdir/testprog tmpdir/copyprog"]
-    set exec_output [lindex $status 1];
+    set status [remote_exec build "cmp" "tmpdir/$test_prog tmpdir/copyprog"]
+    set exec_output [lindex $status 1]
 
     if [string match "" $exec_output] then {
        pass $test1
@@ -475,14 +652,21 @@ proc copy_executable { prog flags test1 test2 } {
 
        setup_xfail "arm*-*-coff"
        setup_xfail "arm*-*-pe"
-       setup_xfail "thumb*-*-coff"
-       setup_xfail "thumb*-*-pe"
+       setup_xfail "*-*-mingw*"
+       setup_xfail "*-*-cygwin*"
     
        fail $test1
     }
 
+    if [string match "" $test2] {
+       return
+    }
+
     set output [remote_load target tmpdir/copyprog]
-    set status [lindex $output 0];
+    set status [lindex $output 0]
+    if { ![istarget $host_triplet] } {
+      set status "pass"
+    }
     if { $status != "pass" } {
        fail $test2
     } else {
@@ -495,14 +679,30 @@ proc copy_executable { prog flags test1 test2 } {
 proc strip_executable { prog flags test } {
     global NM
     global NMFLAGS
+    global READELF
+    global host_triplet
 
+    remote_file build delete tmpdir/striprog
     remote_download build tmpdir/copyprog tmpdir/striprog
     if [is_remote host] {
-       set copyfile [remote_download host tmpdir/striprog];
+       set copyfile [remote_download host tmpdir/striprog]
     } else {
        set copyfile tmpdir/striprog
     }
 
+    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
+       }
+     }
+
     set exec_output [binutils_run $prog "$flags ${copyfile}"]
     if ![string match "" $exec_output] {
        fail $test
@@ -510,16 +710,35 @@ proc strip_executable { prog flags test } {
     }
 
     if [is_remote host] {
-       remote_upload host ${copyfile} tmpdir/striprog;
+       remote_upload host ${copyfile} tmpdir/striprog
     }
 
     set result [remote_load target tmpdir/striprog]
-    set status [lindex $result 0];
+    set status [lindex $result 0]
+    if { ![istarget $host_triplet] } {
+      set status "pass"
+    }
     if { $status != "pass" } {
        fail $test
         return
     }
 
+    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"
+           }
+       }
+    }
+
     set exec_output [binutils_run $NM "$NMFLAGS ${copyfile}"]
     if ![string match "*: no symbols*" $exec_output] {
        fail $test
@@ -533,10 +752,12 @@ proc strip_executable { prog flags test } {
 proc strip_executable_with_saving_a_symbol { prog flags test } {
     global NM
     global NMFLAGS
+    global host_triplet
 
+    remote_file build delete tmpdir/striprog
     remote_download build tmpdir/copyprog tmpdir/striprog
     if [is_remote host] {
-       set copyfile [remote_download host tmpdir/striprog];
+       set copyfile [remote_download host tmpdir/striprog]
     } else {
        set copyfile tmpdir/striprog
     }
@@ -548,29 +769,72 @@ proc strip_executable_with_saving_a_symbol { prog flags test } {
     }
 
     if [is_remote host] {
-       remote_upload host ${copyfile} tmpdir/striprog;
+       remote_upload host ${copyfile} tmpdir/striprog
     }
 
     set result [remote_load target tmpdir/striprog]
-    set status [lindex $result 0];
+    set status [lindex $result 0]
+    if { ![istarget $host_triplet] } {
+      set status "pass"
+    }
     if { $status != "pass" } {
        fail $test
         return
     }
 
     set exec_output [binutils_run $NM "$NMFLAGS ${copyfile}"]
-    if {![regexp {^[0-9a-fA-F]+ T main} $exec_output] \
-         && ![regexp {^[0-9a-fA-F]+ T _main} $exec_output]} {
+    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
+    }
+
+    if {![regexp {^([0-9a-fA-F]+)?[ ]+[TD] main} $exec_output] \
+         && ![regexp {^([0-9a-fA-F]+)?[ ]+[TD] _main} $exec_output]} {
        fail $test
        return
     }
     pass $test
 }
 
+# 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
+
+    remote_file build delete tmpdir/striprog
+    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
+}
+
 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"
+set test5 "keep only debug data"
+set test6 "simple objcopy of debug data"
 
 switch [copy_setup] {
     "1" {
@@ -581,16 +845,164 @@ switch [copy_setup] {
        untested $test2
        untested $test3
        untested $test4
+       untested $test5
+       untested $test6
     }
     "3" {
-       unresolved $test1
-       unresolved $test2
-       unresolved $test3
-       unresolved $test4
+       copy_executable "$OBJCOPY" "$OBJCOPYFLAGS" "$test1" ""
+       unsupported $test2
+       unsupported $test3
+       unsupported $test4
+       unsupported $test5
+       unsupported $test6
     }
     "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"
+       keep_debug_symbols_and_test_copy "$STRIP" "--only-keep-debug $STRIPFLAGS" "$test5" \
+                                        "$OBJCOPY" "$OBJCOPYFLAGS" "$test6"
+    }
+}
+
+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"
+    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 {
+       fail "objcopy ($testname)"
+       return
+    }
+
+    verbose -log "$READELF -a tmpdir/bintest.o > tmpdir/bintest.o.out"
+    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]]
+    if ![string match "" $exec_output] then {
+       unresolved "objcopy ($testname)"
+       return
+    }
+
+    verbose -log "$READELF -a tmpdir/copy.o > tmpdir/copy.o.out"
+    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]]
+    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)"
+    }
+}
+
+# ia64 specific tests
+if { ([istarget "ia64-*-elf*"]
+       || [istarget "ia64-*-linux*"]) } {
+    objcopy_test "ia64 link order" link-order.s
+}
+
+# ELF specific tests
+if [is_elf_format] {
+    objcopy_test "ELF unknown section type" unknown.s
+    objcopy_test_readelf "ELF group" group.s
+    objcopy_test_readelf "ELF group" group-2.s
+    objcopy_test_readelf "ELF group" group-3.s
+    objcopy_test_readelf "ELF group" group-4.s
+    run_dump_test "group-5"
+    run_dump_test "group-6"
+    run_dump_test "copy-1"
+    run_dump_test "note-1"
+}
+
+run_dump_test "copy-2"
+run_dump_test "copy-3"
+run_dump_test "copy-4"
+
+if [is_elf_format] {
+    run_dump_test "strip-1"
+    run_dump_test "strip-2"
+    run_dump_test "strip-3"
+    run_dump_test "strip-4"
+    run_dump_test "strip-5"
+    run_dump_test "strip-6"
+    run_dump_test "strip-7"
+    run_dump_test "strip-8"
+    run_dump_test "strip-9"
+    # Non-EABI ARM targets will set OSABI to ARM
+    if { ![istarget "*-*-hpux*"]
+        && ![istarget "msp*-*-*"]
+        && ![istarget "visium-*-*"]
+         && !([istarget "arm*-*-*"] && ![istarget "arm-*-*eabi*"])} {
+       run_dump_test "strip-10"
+    }
+
+    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"
+
+       set srcfile $srcdir/$subdir/needed-by-reloc.s
+
+       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"]
+
+           if [regexp "not stripping symbol `foo' because it is named in a relocation" $got] {
+               pass $test
+           } else {
+               fail $test
+           }
+       }
+    }
+
+    # 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=mips_elf32_be_vec,
+    # targ_defvec=mips_elf32_le_vec,
+    # targ_defvec=mips_elf32_n_be_vec or
+    # targ_defvec=mips_elf32_n_le_vec in config.bfd.  When syncing,
+    # don't forget that earlier case-matches trump later ones.
+    if { ![istarget "mips*-sde-elf*"] && ![istarget "mips*-mti-elf*"]
+        && ![istarget "mips*-img-elf*"]
+         && ![istarget "mips64*-*-openbsd*"] } {
+       setup_xfail "mips*-*-irix5*" "mips*-*-irix6*" "mips*-*-elf*" \
+           "mips*-*-rtems*" "mips*-*-windiss" "mips*-*-none" \
+           "mips*-*-openbsd*" "mips*-*-chorus*"
+    }
+    run_dump_test "localize-hidden-1"
+    run_dump_test "testranges"
+    run_dump_test "testranges-ia64"
+
+    run_dump_test "add-section"
+    run_dump_test "add-empty-section"
+
+    run_dump_test "exclude-1a"
+    run_dump_test "exclude-1b"
 }
+run_dump_test "localize-hidden-2"