diff options
Diffstat (limited to 'gdb/testsuite/gdb.base/all-bin.exp')
-rw-r--r-- | gdb/testsuite/gdb.base/all-bin.exp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gdb/testsuite/gdb.base/all-bin.exp b/gdb/testsuite/gdb.base/all-bin.exp index 33594fd..fe6b755 100644 --- a/gdb/testsuite/gdb.base/all-bin.exp +++ b/gdb/testsuite/gdb.base/all-bin.exp @@ -187,17 +187,9 @@ gdb_expect { send_gdb "print v_int+v_double\n" gdb_expect { - -re ".*206.56565.*$gdb_prompt $" { + -re ".*206.565.*$gdb_prompt $" { pass "print value of v_int+v_double" } - -re ".*206.565643.*$gdb_prompt $" { - # D10V has 4-byte doubles - if [istarget "d10v*-*"] then { - pass "print value of v_int+v_double (D10V)" - } else { - fail "print value of v_int+v_double (precision)" - } - } -re ".*$gdb_prompt $" { fail "print value of v_int+v_double" } timeout { fail "(timeout) print value of v_int+v_double" } } |