summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPedro Alves <pedro@codesourcery.com>2010-07-29 23:19:46 +0000
committerPedro Alves <pedro@codesourcery.com>2010-07-29 23:19:46 +0000
commit4a71f28cb169ced3d32eb12b64babd686bbe0eae (patch)
tree55bfb6bd3d9f7732cebf60ac0e6b1c1c27a99f17
parent31e3f1830faa0858479d1d436249d0d3dea6b36b (diff)
downloadgdb-4a71f28cb169ced3d32eb12b64babd686bbe0eae.tar.gz
* gdb.threads/pthreads.exp (check_backtraces): Consume $gdb_prompt
in gdb_test_multiple.
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/gdb.threads/pthreads.exp6
2 files changed, 8 insertions, 3 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index a3ae15e00ae..275f2fd68bc 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,5 +1,10 @@
2010-07-29 Pedro Alves <pedro@codesourcery.com>
+ * gdb.threads/pthreads.exp (check_backtraces): Consume $gdb_prompt
+ in gdb_test_multiple.
+
+2010-07-29 Pedro Alves <pedro@codesourcery.com>
+
* lib/gdb.exp (gdb_init): Set LC_ALL and LANG to C in the
environment.
diff --git a/gdb/testsuite/gdb.threads/pthreads.exp b/gdb/testsuite/gdb.threads/pthreads.exp
index d2a8968b570..9662fea7dbf 100644
--- a/gdb/testsuite/gdb.threads/pthreads.exp
+++ b/gdb/testsuite/gdb.threads/pthreads.exp
@@ -269,16 +269,16 @@ proc check_backtraces {} {
"set break at common_routine in thread 2"
gdb_test_multiple "continue" "continue to bkpt at common_routine in thread 2" {
- -re "Breakpoint .* common_routine \\(arg=2\\).*" {
+ -re "Breakpoint .* common_routine \\(arg=2\\).*$gdb_prompt $" {
pass "continue to bkpt at common_routine in thread 2"
gdb_test "backtrace" \
"#0.*common_routine \\(arg=2\\).*#1.*thread2.*" \
"backtrace from thread 2 bkpt in common_routine"
}
- -re "Breakpoint .* common_routine \\(arg=0\\).*" {
+ -re "Breakpoint .* common_routine \\(arg=0\\).*$gdb_prompt $" {
fail "continue to bkpt at common_routine in thread 2 (arg=0)"
}
- -re "Breakpoint .* common_routine \\(arg=1\\).*" {
+ -re "Breakpoint .* common_routine \\(arg=1\\).*$gdb_prompt $" {
fail "continue to bkpt at common_routine in thread 2 (arg=1)"
}
}