diff options
author | Mark Kettenis <kettenis@gnu.org> | 2006-07-17 22:10:03 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2006-07-17 22:10:03 +0000 |
commit | 0427185f688358e6479f0b2ca2363667aefe8e06 (patch) | |
tree | fc4ce831077cc21d22bea00d68e1cd313c7e09fc | |
parent | f4ce8655c711fb8b7bc30aaa00e4ef69bb8129c0 (diff) | |
download | gdb-0427185f688358e6479f0b2ca2363667aefe8e06.tar.gz |
* gdb.base/long_long.exp (gdb_test_long_long): Exclude
*-*-openbsd* from targets for wich we expect ARM FPA floating
point format.
-rw-r--r-- | gdb/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/long_long.exp | 9 |
2 files changed, 11 insertions, 4 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index c99cc539a4a..1d86e6869d6 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2006-07-17 Mark Kettenis <kettenis@gnu.org> + + * gdb.base/long_long.exp (gdb_test_long_long): Exclude + *-*-openbsd* from targets for wich we expect ARM FPA floating + point format. + 2006-07-17 Nick Roberts <nickrob@snap.net.nz> * gdb.cp/annota3.exp: Expect frame-begin annotation. diff --git a/gdb/testsuite/gdb.base/long_long.exp b/gdb/testsuite/gdb.base/long_long.exp index e26d45a9510..7a7d9f93476 100644 --- a/gdb/testsuite/gdb.base/long_long.exp +++ b/gdb/testsuite/gdb.base/long_long.exp @@ -207,10 +207,11 @@ if { $sizeof_double == 8 || $sizeof_long_double == 8 } { # EABI targets default to natural-endian VFP format. if { ([istarget "arm*-*-*"] || \ - [istarget "xscale*-*-*"] || \ - [istarget "strongarm*-*-*"]) \ - && !([istarget "*-*-*eabi"] || \ - [istarget "*-*-symbianelf"]) } then { + [istarget "xscale*-*-*"] || \ + [istarget "strongarm*-*-*"]) \ + && !([istarget "*-*-*eabi"] || \ + [istarget "*-*-openbsd*"] || \ + [istarget "*-*-symbianelf"]) } then { # assume the long long represents a floating point double in ARM format gdb_test "p/f val.oct" "2.1386676354387559e\\+265" } else { |