diff options
author | Michael Snyder <msnyder@specifix.com> | 2002-05-03 21:25:08 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@specifix.com> | 2002-05-03 21:25:08 +0000 |
commit | c41c04eaa6d944d5798c99a56adf45af9b7b5fd2 (patch) | |
tree | 8c4090db205fbfbdac4b00427729a8dcaddc83f3 /gdb/testsuite/gdb.base | |
parent | c7a84f2358484456f5291ff9082945b5767e3210 (diff) | |
download | gdb-c41c04eaa6d944d5798c99a56adf45af9b7b5fd2.tar.gz |
2002-05-02 Michael Snyder <msnyder@redhat.com>
* gdb.base/long_long.exp: Add xscale target.
* gdb.base/default.exp: Add xscale target.
Diffstat (limited to 'gdb/testsuite/gdb.base')
-rw-r--r-- | gdb/testsuite/gdb.base/default.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/long_long.exp | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.base/default.exp b/gdb/testsuite/gdb.base/default.exp index 8ebeba877d3..c79be2e1076 100644 --- a/gdb/testsuite/gdb.base/default.exp +++ b/gdb/testsuite/gdb.base/default.exp @@ -348,6 +348,8 @@ gdb_test "info files" "" "info files" #test info float if [istarget "arm*-*-*"] then { gdb_test "info float" "Software FPU type.*mask:.*flags:.*" "info float" +} elseif [istarget "xscale*-*-*"] then { + gdb_test "info float" "Software FPU type.*mask:.*flags:.*" "info float" } elseif [istarget "thumb*-*-*"] then { gdb_test "info float" "Software FPU type.*mask:.*flags:.*" "info float" } elseif [istarget "strongarm*-*-*"] then { diff --git a/gdb/testsuite/gdb.base/long_long.exp b/gdb/testsuite/gdb.base/long_long.exp index ff8a1f91a31..016b0e67f6b 100644 --- a/gdb/testsuite/gdb.base/long_long.exp +++ b/gdb/testsuite/gdb.base/long_long.exp @@ -157,6 +157,11 @@ if { $sizeof_double == 8 } { # assume the long long represents a floating point double in ARM format gdb_test "p/f oct" ".*2.1386676354387559e\\+265.*" + } elseif [ istarget "xscale*-*-*" ] then { + +# assume the long long represents a floating point double in ARM format + gdb_test "p/f oct" ".*2.1386676354387559e\\+265.*" + } else { # assume the long long represents a floating point double in little |