aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2010-08-02 15:07:14 +0000
committerKazu Hirata <kazu@codesourcery.com>2010-08-02 15:07:14 +0000
commit42c0c4f1c509c9077a24405c6bf8bb679cf64b68 (patch)
tree8ba0a5f9348bb0947e0ee61cf745da4777ae6444 /gdb
parent69da848e6ebe8d0b4196f2b630b112fa43dc9348 (diff)
downloadgdb-42c0c4f1c509c9077a24405c6bf8bb679cf64b68.zip
gdb-42c0c4f1c509c9077a24405c6bf8bb679cf64b68.tar.gz
gdb-42c0c4f1c509c9077a24405c6bf8bb679cf64b68.tar.bz2
* gdb.base/break-always.exp: Do not expect full paths to file
names. * gdb.base/commands.exp: Likewise.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/ChangeLog6
-rw-r--r--gdb/testsuite/gdb.base/break-always.exp2
-rw-r--r--gdb/testsuite/gdb.base/commands.exp8
3 files changed, 11 insertions, 5 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index cbcf0a9..b0fc746 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -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,
diff --git a/gdb/testsuite/gdb.base/break-always.exp b/gdb/testsuite/gdb.base/break-always.exp
index 6eb0356..c1cf00d 100644
--- a/gdb/testsuite/gdb.base/break-always.exp
+++ b/gdb/testsuite/gdb.base/break-always.exp
@@ -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.*"
diff --git a/gdb/testsuite/gdb.base/commands.exp b/gdb/testsuite/gdb.base/commands.exp
index 7151206..9dabf88 100644
--- a/gdb/testsuite/gdb.base/commands.exp
+++ b/gdb/testsuite/gdb.base/commands.exp
@@ -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"
}
}