From: Joel Brobecker Date: Thu, 25 Oct 2012 11:16:18 +0000 (+0000) Subject: gdb.base/ldbl_e308.exp: Do not allow "inf" in value output. X-Git-Tag: sid-snapshot-20121101~48 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=528b42ae75c9f19f1bca1e109a7de13d89ba11b2;p=external%2Fbinutils.git gdb.base/ldbl_e308.exp: Do not allow "inf" in value output. That was an attempt at handling the targets where sizeof(long double) is less than 8, but the way it was implement allows the bug that this testcase verifies to come back without being noticed. gdb/testsuite/ChangeLog: * gdb.base/ldbl_e308.exp: Remove "inf" from possible expected output for "print inp" test. --- diff --git a/gdb/testsuite/gdb.base/ldbl_e308.exp b/gdb/testsuite/gdb.base/ldbl_e308.exp index 89c54b5..ad9c5f4 100644 --- a/gdb/testsuite/gdb.base/ldbl_e308.exp +++ b/gdb/testsuite/gdb.base/ldbl_e308.exp @@ -27,5 +27,5 @@ if ![runto_main] { gdb_test_no_output "set variable ldbl_308 = 1.6e+308l" gdb_test "print ldbl_308" \ - "= (1\..*e\\+308|inf)" + "= 1\..*e\\+308"