diff options
author | Fred Fish <fnf@specifix.com> | 2006-02-19 20:53:34 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 2006-02-19 20:53:34 +0000 |
commit | a8b7528fa21ac7856d940f5d9eadb26345557cf3 (patch) | |
tree | afc5c4fc6a044f3bd0cad435311f845ed8165f8e | |
parent | 806e23c026a7eee3db787352ff97cc4a1a41e357 (diff) | |
download | gdb-a8b7528fa21ac7856d940f5d9eadb26345557cf3.zip gdb-a8b7528fa21ac7856d940f5d9eadb26345557cf3.tar.gz gdb-a8b7528fa21ac7856d940f5d9eadb26345557cf3.tar.bz2 |
Reviewed and approved by Daniel Jacobowitz
2006-02-19 Fred Fish <fnf@specifix.com>
* gdb.base/pc-fp.exp (get_valueofx): Don't print environment
specifix hex value as part of results.
* gdb.base/shreloc.exp (get_msym_addrs): Ditto.
-rw-r--r-- | gdb/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/pc-fp.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/shreloc.exp | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index ea33a48..5bebba0 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2006-02-19 Fred Fish <fnf@specifix.com> + + * gdb.base/pc-fp.exp (get_valueofx): Don't print environment + specifix hex value as part of results. + * gdb.base/shreloc.exp (get_msym_addrs): Ditto. + 2006-02-16 Fred Fish <fnf@specifix.com> * gdb.base/whatis.c: Define variables using typedefs char_addr, diff --git a/gdb/testsuite/gdb.base/pc-fp.exp b/gdb/testsuite/gdb.base/pc-fp.exp index c7daf6f..174a8d9 100644 --- a/gdb/testsuite/gdb.base/pc-fp.exp +++ b/gdb/testsuite/gdb.base/pc-fp.exp @@ -62,7 +62,7 @@ proc get_valueofx { fmt exp default } { gdb_expect { -re "\\$\[0-9\]* = (0x\[0-9a-zA-Z\]+).*$gdb_prompt $" { set val $expect_out(1,string) - pass "get value of ${exp} ($val)" + pass "get value of ${exp}" } timeout { set val ${default} diff --git a/gdb/testsuite/gdb.base/shreloc.exp b/gdb/testsuite/gdb.base/shreloc.exp index 97ba7c0..fe8ecfc 100644 --- a/gdb/testsuite/gdb.base/shreloc.exp +++ b/gdb/testsuite/gdb.base/shreloc.exp @@ -191,7 +191,7 @@ proc get_msym_addrs { var msymfile } { } -re "$gdb_prompt $" { - pass "get_msym_addrs ${var} (${result})" + pass "get_msym_addrs ${var}" return "${result}" } |