* gdb.base/break-always.exp: Do not expect full paths to file

names.
	* gdb.base/commands.exp: Likewise.
This commit is contained in:
Kazu Hirata 2010-08-02 15:07:14 +00:00
parent 69da848e6e
commit 42c0c4f1c5
3 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2010-07-30 Kazu Hirata <kazu@codesourcery.com>
* gdb.base/break-always.exp: Do not expect full paths to file
names.
* gdb.base/commands.exp: Likewise.
2010-07-30 Doug Evans <dje@google.com>
* gdb.cp/temargs.exp: For new tests that require newer gccs,

View File

@ -29,7 +29,7 @@ gdb_test "show breakpoint always-inserted" "mode is on\." \
runto foo
gdb_test "break bar" "Breakpoint 2.*" "set breakpoint on bar"
gdb_continue_to_breakpoint "bar" ".*/break-always.c:$bar_location.*"
gdb_continue_to_breakpoint "bar" ".*break-always.c:$bar_location.*"

View File

@ -427,7 +427,7 @@ proc bp_deleted_in_command_test {} {
# Create a breakpoint, and associate a command-list to it, with
# one command that deletes this breakpoint.
gdb_test "break factorial" \
"Breakpoint \[0-9\]+ at .*: file .*/run.c, line \[0-9\]+\." \
"Breakpoint \[0-9\]+ at .*: file .*run.c, line \[0-9\]+\." \
"breakpoint in bp_deleted_in_command_test"
gdb_test_multiple "commands" "begin commands in bp_deleted_in_command_test" {
@ -489,7 +489,7 @@ proc temporary_breakpoint_commands {} {
# This test will verify that this commands list is executed when the
# breakpoint is hit.
gdb_test "tbreak factorial" \
"Temporary breakpoint \[0-9\]+ at .*: file .*/run.c, line \[0-9\]+\." \
"Temporary breakpoint \[0-9\]+ at .*: file .*run.c, line \[0-9\]+\." \
"breakpoint in temporary_breakpoint_commands"
gdb_test_multiple "commands" \
@ -634,7 +634,7 @@ proc if_commands_test {} {
}
}
gdb_test_multiple "end" "second end - $test" {
-re "Breakpoint \[0-9\]+ at .*: file .*/run.c, line \[0-9\]+\.\r\n$gdb_prompt $" {
-re "Breakpoint \[0-9\]+ at .*: file .*run.c, line \[0-9\]+\.\r\n$gdb_prompt $" {
pass "second end - $test"
}
-re "Undefined command: \"silent\".*$gdb_prompt $" {
@ -660,7 +660,7 @@ proc if_commands_test {} {
}
}
gdb_test_multiple "end" "second end - $test" {
-re "Breakpoint \[0-9\]+ at .*: file .*/run.c, line \[0-9\]+\.\r\n$gdb_prompt $" {
-re "Breakpoint \[0-9\]+ at .*: file .*run.c, line \[0-9\]+\.\r\n$gdb_prompt $" {
pass "second end - $test"
}
}