diff options
author | Joseph Myers <joseph@codesourcery.com> | 2011-05-04 19:28:16 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2011-05-04 19:28:16 +0000 |
commit | 4d393d60c43d163ca00d80abdf7544f99c9915e0 (patch) | |
tree | 1af6d4f08534a0ba8c7a0bc51dbd9052e7e523b5 /gdb/testsuite/gdb.base | |
parent | 8ffd0459d267b0bc7cfa3ef71dfba480143c5276 (diff) | |
download | gdb-4d393d60c43d163ca00d80abdf7544f99c9915e0.zip gdb-4d393d60c43d163ca00d80abdf7544f99c9915e0.tar.gz gdb-4d393d60c43d163ca00d80abdf7544f99c9915e0.tar.bz2 |
gdb:
* configure.host (xscale*): Don't handle target.
* configure.tgt (thumb*-*-* | strongarm*-*-* | xscale-*-*): Don't
handle targets.
gdb/gdbserver:
* README: Don't mention xscale*-*-linux*.
* configure.srv (xscale*-*-linux*): Don't handle target.
gdb/testsuite:
* gdb.base/a2-run.exp (strongarm-*-coff): Don't handle target.
* gdb.base/float.exp (xscale*-*-*, strongarm*-*-*): Don't handle
targets.
* gdb.base/long_long.exp (xscale*-*-*, strongarm*-*-*): Don't
handle targets.
sim:
* configure.tgt (thumb*-*-* | strongarm*-*-* | xscale-*-*): Don't
handle targets.
* configure: Regenerate.
sim/testsuite:
* configure: Regenerate.
* sim/arm/allinsn.exp (xscale*-*-*): Don't handle target.
* sim/arm/misc.exp (thumb*-*-*, xscale*-*-*): Don't handle
targets.
* sim/arm/iwmmxt/iwmmxt.exp: Test for arm*-*-* instead of
xscale*-*-*.
* sim/arm/thumb/allthumb.exp (thumb*-*-*): Don't handle target.
* sim/arm/xscale/xscale.exp: Test for arm*-*-* instead of
xscale*-*-*.
Diffstat (limited to 'gdb/testsuite/gdb.base')
-rw-r--r-- | gdb/testsuite/gdb.base/a2-run.exp | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/float.exp | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/long_long.exp | 4 |
3 files changed, 5 insertions, 9 deletions
diff --git a/gdb/testsuite/gdb.base/a2-run.exp b/gdb/testsuite/gdb.base/a2-run.exp index cb1e6fd..2ba2d8a 100644 --- a/gdb/testsuite/gdb.base/a2-run.exp +++ b/gdb/testsuite/gdb.base/a2-run.exp @@ -111,7 +111,7 @@ if [istarget "*-*-vxworks*"] then { verbose "Timeout is now $timeout seconds" 2 gdb_expect -re "$gdb_prompt $" {} } else { - setup_xfail "mips-idt-*" "arm-*-coff strongarm-*-coff" + setup_xfail "mips-idt-*" "arm-*-coff" gdb_run_cmd 5 gdb_expect { -re ".*120.*$gdb_prompt $"\ @@ -139,7 +139,7 @@ if [istarget "*-*-vxworks*"] then { verbose "Timeout is now $timeout seconds" 2 gdb_expect -re "$gdb_prompt $" {} } else { - setup_xfail "arm-*-coff strongarm-*-coff" + setup_xfail "arm-*-coff" gdb_expect { -re ".*120.*$gdb_prompt $"\ { pass "run \"$testfile\" again with same args" } @@ -216,7 +216,7 @@ if [istarget "*-*-vxworks*"] then { verbose "Timeout is now $timeout seconds" 2 gdb_expect -re "$gdb_prompt $" {} } else { - setup_xfail "arm-*-coff strongarm-*-coff" + setup_xfail "arm-*-coff" gdb_expect { -re ".*720.*$gdb_prompt $" { pass "run \"$testfile\" again after setting args" diff --git a/gdb/testsuite/gdb.base/float.exp b/gdb/testsuite/gdb.base/float.exp index 83be8d9..170ba77 100644 --- a/gdb/testsuite/gdb.base/float.exp +++ b/gdb/testsuite/gdb.base/float.exp @@ -42,9 +42,7 @@ if ![runto_main] then { if { [istarget "alpha*-*-*"] } then { gdb_test "info float" "f0.*" "info float" -} elseif { [istarget "arm*-*-*"] || \ - [istarget "xscale*-*-*"] || \ - [istarget "strongarm*-*-*"] } then { +} elseif { [istarget "arm*-*-*"] } then { gdb_test_multiple "info float" "info float" { -re "Software FPU type.*mask:.*flags:.*$gdb_prompt $" { pass "info float (FPA)" diff --git a/gdb/testsuite/gdb.base/long_long.exp b/gdb/testsuite/gdb.base/long_long.exp index baa76b6..9162f6a 100644 --- a/gdb/testsuite/gdb.base/long_long.exp +++ b/gdb/testsuite/gdb.base/long_long.exp @@ -165,9 +165,7 @@ if { $sizeof_double == 8 || $sizeof_long_double == 8 } { # words swapped in big endian format. # EABI targets default to natural-endian VFP format. - if { ([istarget "arm*-*-*"] || \ - [istarget "xscale*-*-*"] || \ - [istarget "strongarm*-*-*"]) \ + if { ([istarget "arm*-*-*"]) \ && !([istarget "*-*-*eabi"] || \ [istarget "*-*-mingw32ce*"] || \ [istarget "*-*-openbsd*"] || \ |