diff options
author | Will Newton <willnewton@sourceware.org> | 2013-06-07 08:53:32 +0000 |
---|---|---|
committer | Will Newton <willnewton@sourceware.org> | 2013-06-07 08:53:32 +0000 |
commit | 88ab56844a4b8155cd5f2491de5e12a57d24c089 (patch) | |
tree | bc25b4af2f9cb1e4ed03f8d29ed20d343e550e40 | |
parent | 42daa7a046faec2ed45adf0dfed66077a87103ae (diff) | |
download | gdb-88ab56844a4b8155cd5f2491de5e12a57d24c089.zip gdb-88ab56844a4b8155cd5f2491de5e12a57d24c089.tar.gz gdb-88ab56844a4b8155cd5f2491de5e12a57d24c089.tar.bz2 |
gdb/testsuite/gdb.base/long_long.exp: Fix ARM EABI target
glob.
The current glob missed gnueabihf targets. Expand to catch these
cases and fix the test failure on those systems.
gdb/testsuite/ChangeLog:
2013-06-07 Will Newton <will.newton@linaro.org>
* gdb.base/long_long.exp: Fix ARM EABI target glob.
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/long_long.exp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 24dd725..2c1a69a 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,9 @@ 2013-06-07 Will Newton <will.newton@linaro.org> + * gdb.base/long_long.exp: Fix ARM EABI target glob. + +2013-06-07 Will Newton <will.newton@linaro.org> + * gdb.cp/annota2.exp: Add empty line between "post-prompt" and "starting". diff --git a/gdb/testsuite/gdb.base/long_long.exp b/gdb/testsuite/gdb.base/long_long.exp index 4c93eda..38df863 100644 --- a/gdb/testsuite/gdb.base/long_long.exp +++ b/gdb/testsuite/gdb.base/long_long.exp @@ -161,7 +161,7 @@ if { $sizeof_double == 8 || $sizeof_long_double == 8 } { # EABI targets default to natural-endian VFP format. if { ([istarget "arm*-*-*"]) \ - && !([istarget "*-*-*eabi"] || \ + && !([istarget "*-*-*eabi*"] || \ [istarget "*-*-mingw32ce*"] || \ [istarget "*-*-openbsd*"] || \ [istarget "*-*-symbianelf"]) } then { |