* gdb.base/step-bt.exp: Make hexadecimal address optional in

expected output of the backtrace commands.
This commit is contained in:
Daniel Jacobowitz 2006-08-10 13:05:18 +00:00
parent b60f089831
commit 089ec8f1ac
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2006-08-10 Joel Brobecker <brobecker@adacore.com>
Daniel Jacobowitz <dan@codesourcery.com>
* gdb.base/step-bt.exp: Make hexadecimal address optional in
expected output of the backtrace commands.
2006-08-09 Joel Brobecker <brobecker@adacore.com>
* gdb.arch/altivec-abi.exp: Replace gdb_suppress_entire_file with

View File

@ -63,7 +63,7 @@ gdb_test "stepi" \
"step first instruction"
gdb_test "bt" \
"#0 +0x\[0-9a-z\]+ in hello .*#1 +0x\[0-9a-z\]* in main.*" \
"#0 +(0x\[0-9a-z\]+ in )?hello .*#1 +(0x\[0-9a-z\]* in )?main.*" \
"backtrace after first instruction step"
gdb_test "stepi" \
@ -71,6 +71,6 @@ gdb_test "stepi" \
"step second instruction"
gdb_test "bt" \
"#0 +0x\[0-9a-z\]+ in hello .*#1 +0x\[0-9a-z\]* in main.*" \
"#0 +(0x\[0-9a-z\]+ in )?hello .*#1 +(0x\[0-9a-z\]* in )?main.*" \
"backtrace after second instruction step"