summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorMichael Snyder <msnyder@specifix.com>2002-05-23 21:20:53 +0000
committerMichael Snyder <msnyder@specifix.com>2002-05-23 21:20:53 +0000
commitc81bf88b218dd5de72e17281b9a81ec7d2086ed7 (patch)
tree457ee330ad1814ef902ae424aa6b664c9c97d648 /gdb
parent77bff55fed6a9d1c006a82e34a2afddaf8c55282 (diff)
downloadgdb-c81bf88b218dd5de72e17281b9a81ec7d2086ed7.tar.gz
2002-05-23 Michael Snyder <msnyder@redhat.com>
* gdb.base/all-bin.exp: Revise previous patch by just reducing the precision of the floating point test results. * gdb.base/call-rt-st.exp: Ditto.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/ChangeLog4
-rw-r--r--gdb/testsuite/gdb.base/all-bin.exp10
-rw-r--r--gdb/testsuite/gdb.base/call-rt-st.exp10
3 files changed, 7 insertions, 17 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index f4abde4fbe8..74359dde5b8 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,5 +1,9 @@
2002-05-23 Michael Snyder <msnyder@redhat.com>
+ * gdb.base/all-bin.exp: Revise previous patch by just reducing
+ the precision of the floating point test results.
+ * gdb.base/call-rt-st.exp: Ditto.
+
* gdb.base/all-bin.exp: Allow for reduced floating point precision.
* gdb.base/call-rt-st.exp: Ditto.
diff --git a/gdb/testsuite/gdb.base/all-bin.exp b/gdb/testsuite/gdb.base/all-bin.exp
index 33594fdca93..fe6b7558e4c 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" }
}
diff --git a/gdb/testsuite/gdb.base/call-rt-st.exp b/gdb/testsuite/gdb.base/call-rt-st.exp
index 0386aa1df96..fb63913c984 100644
--- a/gdb/testsuite/gdb.base/call-rt-st.exp
+++ b/gdb/testsuite/gdb.base/call-rt-st.exp
@@ -175,14 +175,8 @@ if ![gdb_skip_stdio_test "print print_one_large_struct(...)"] {
if {![gdb_skip_float_test "print print_one_double(*d1)"] && \
![gdb_skip_stdio_test "print print_one_double(*d1)"] } {
- if [istarget "d10v*-*"] then {
- # D10V has 4-byte doubles
- print_struct_call "print_one_double(*d1)" \
- ".*Contents of one_double_t:\[ \r\n\]+1\\.111110\[ \r\n\]+.\[0-9\]+ = \\{double1 = 1\\.11110997\\}"
- } else {
- print_struct_call "print_one_double(*d1)" \
- ".*Contents of one_double_t:\[ \r\n\]+1\\.111110\[ \r\n\]+.\[0-9\]+ = \\{double1 = 1\\.11111\\}"
- }
+ print_struct_call "print_one_double(*d1)" \
+ ".*Contents of one_double_t:\[ \r\n\]+1\\.111110\[ \r\n\]+.\[0-9\]+ = \\{double1 = 1\\.111\[0-9\]*\}"
}
if {![gdb_skip_float_test "print print_two_floats(*f3)"] && \