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.
This commit is contained in:
Fred Fish 2006-02-19 20:53:34 +00:00
parent 806e23c026
commit a8b7528fa2
3 changed files with 8 additions and 2 deletions

View File

@ -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> 2006-02-16 Fred Fish <fnf@specifix.com>
* gdb.base/whatis.c: Define variables using typedefs char_addr, * gdb.base/whatis.c: Define variables using typedefs char_addr,

View File

@ -62,7 +62,7 @@ proc get_valueofx { fmt exp default } {
gdb_expect { gdb_expect {
-re "\\$\[0-9\]* = (0x\[0-9a-zA-Z\]+).*$gdb_prompt $" { -re "\\$\[0-9\]* = (0x\[0-9a-zA-Z\]+).*$gdb_prompt $" {
set val $expect_out(1,string) set val $expect_out(1,string)
pass "get value of ${exp} ($val)" pass "get value of ${exp}"
} }
timeout { timeout {
set val ${default} set val ${default}

View File

@ -191,7 +191,7 @@ proc get_msym_addrs { var msymfile } {
} }
-re "$gdb_prompt $" { -re "$gdb_prompt $" {
pass "get_msym_addrs ${var} (${result})" pass "get_msym_addrs ${var}"
return "${result}" return "${result}"
} }