aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2006-07-17 22:10:03 +0000
committerMark Kettenis <kettenis@gnu.org>2006-07-17 22:10:03 +0000
commit267a692b80e0cbaaabd7419827b74f6ccd1d7787 (patch)
tree349b14c5f4c3c01a6a2a18b2c5ea2627c8291e93
parentaa88762a706df5fe636f7dc3727c0586861720ed (diff)
downloadgdb-267a692b80e0cbaaabd7419827b74f6ccd1d7787.zip
gdb-267a692b80e0cbaaabd7419827b74f6ccd1d7787.tar.gz
gdb-267a692b80e0cbaaabd7419827b74f6ccd1d7787.tar.bz2
* 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/ChangeLog6
-rw-r--r--gdb/testsuite/gdb.base/long_long.exp9
2 files changed, 11 insertions, 4 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index c99cc53..1d86e68 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 e26d45a..7a7d9f9 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 {