diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-03-27 16:28:16 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-03-27 16:28:16 +0000 |
commit | 8b550686c0bf98fe7f040e348414a7d95c2faf64 (patch) | |
tree | 36f4c835aa520413d8985201608333f21c9b5fb1 /binutils | |
parent | a735edad1393fd7db3780de5edd82108e471b125 (diff) | |
download | gdb-8b550686c0bf98fe7f040e348414a7d95c2faf64.zip gdb-8b550686c0bf98fe7f040e348414a7d95c2faf64.tar.gz gdb-8b550686c0bf98fe7f040e348414a7d95c2faf64.tar.bz2 |
* binutils-all/objcopy.exp: Add setup_xfail for simply copy test
for m68*-*-vxworks*.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/objcopy.exp | 14 |
2 files changed, 14 insertions, 5 deletions
diff --git a/binutils/testsuite/ChangeLog b/binutils/testsuite/ChangeLog index 516bad2..22dafd0 100644 --- a/binutils/testsuite/ChangeLog +++ b/binutils/testsuite/ChangeLog @@ -1,3 +1,8 @@ +Mon Mar 27 11:27:31 1995 Ian Lance Taylor <ian@cygnus.com> + + * binutils-all/objcopy.exp: Add setup_xfail for simply copy test + for m68*-*-vxworks*. + Fri Mar 24 11:44:25 1995 Ian Lance Taylor <ian@cygnus.com> * binutils-hppa/objdump.exp: Correct hppa*-*-* check. diff --git a/binutils/testsuite/binutils-all/objcopy.exp b/binutils/testsuite/binutils-all/objcopy.exp index 0b8125e..97a2fce 100644 --- a/binutils/testsuite/binutils-all/objcopy.exp +++ b/binutils/testsuite/binutils-all/objcopy.exp @@ -26,10 +26,6 @@ if {[which $OBJCOPY] == 0} then { send_user "Version [binutil_version $OBJCOPY]" -if [istarget hppa*-*-*] then { - # bintest.s doesn't assemble, and we don't have any other tests - return -} if {![binutils_assemble $AS $srcdir$subdir/bintest.s tmpdir/bintest.o]} then { return @@ -47,9 +43,17 @@ if ![string match "" $got] then { catch "exec cmp tmpdir/bintest.o tmpdir/copy.o" 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" "m68*-*-hpux*" + setup_xfail "sh-*-coff" "sh-*-hms" + setup_xfail "m68*-*-hpux*" "m68*-*-sunos*" "m68*-*-coff" "m68*-*-vxworks*" + setup_xfail "i*86-*-linux" + setup_xfail "a29k-*-udi" "a29k-*-coff" + setup_xfail "i960-*-vxworks5.1" "i960-*-coff" + setup_xfail "h8300-*-hms" "h8300-*-coff" + setup_xfail "hppa*-*-*" if [string match "" $exec_output] then { pass "objcopy (simple copy)" |