diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2007-02-27 12:19:16 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@codesourcery.com> | 2007-02-27 12:19:16 +0000 |
commit | 903b1f5b5baab68c9893a97d0dd7e1ca13e24451 (patch) | |
tree | 2c13c3a189aa678951675311ea6fdf08d117613f /binutils | |
parent | 32b116f812304f56965a5b11331f36f77f694adb (diff) | |
download | gdb-903b1f5b5baab68c9893a97d0dd7e1ca13e24451.zip gdb-903b1f5b5baab68c9893a97d0dd7e1ca13e24451.tar.gz gdb-903b1f5b5baab68c9893a97d0dd7e1ca13e24451.tar.bz2 |
* binutils-all/objcopy.exp: Skip for uclinux targets.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/objcopy.exp | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/binutils/testsuite/ChangeLog b/binutils/testsuite/ChangeLog index 38a8d23..27e5a10 100644 --- a/binutils/testsuite/ChangeLog +++ b/binutils/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2007-02-27 Nathan Sidwell <nathan@codesourcery.com> + + * binutils-all/objcopy.exp: Skip for uclinux targets. + 2007-02-14 Nick Clifton <nickc@redhat.com> * binutils-all/readelf.exp (readelf_wi_test): Fix unexpected diff --git a/binutils/testsuite/binutils-all/objcopy.exp b/binutils/testsuite/binutils-all/objcopy.exp index 3ab38ec..d782e9b 100644 --- a/binutils/testsuite/binutils-all/objcopy.exp +++ b/binutils/testsuite/binutils-all/objcopy.exp @@ -458,6 +458,10 @@ proc copy_setup { } { set res [build_wrapper testglue.o] set flags { debug } + if { [istarget *-*-uclinux*] } { + return 1 + } + if { $res != "" } { lappend flags "additional_flags=[lindex $res 1]" set add_libs "testglue.o" |