diff options
-rw-r--r-- | gdb/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/float.exp | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 6fd08ae..3942eb7 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,9 @@ 2003-06-02 Richard Henderson <rth@redhat.com> + * gdb.base/float.exp: Add expected regexp for alpha-*-*. + +2003-06-02 Richard Henderson <rth@redhat.com> + * gdb.base/selftest.exp: Next over lim_at_start initialization. 2003-06-02 Richard Henderson <rth@redhat.com> diff --git a/gdb/testsuite/gdb.base/float.exp b/gdb/testsuite/gdb.base/float.exp index 8e239d9..fff9fe6 100644 --- a/gdb/testsuite/gdb.base/float.exp +++ b/gdb/testsuite/gdb.base/float.exp @@ -51,7 +51,9 @@ if ![runto_main] then { # Test "info float". -if { [istarget "arm*-*-*"] || \ +if { [istarget "alpha*-*-*"] } then { + gdb_test "info float" "f0.*" "info float" +} elseif { [istarget "arm*-*-*"] || \ [istarget "xscale*-*-*"] || \ [istarget "strongarm*-*-*"] } then { gdb_test "info float" "Software FPU type.*mask:.*flags:.*" "info float" |