diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2010-09-08 17:49:54 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2010-09-08 17:49:54 +0000 |
commit | 27d3a3fc5909b7545a5014d77dcc5366f3b080df (patch) | |
tree | c1777be1c190b423e9b8283ff3ff43ade733666e | |
parent | 15735687c6dc91414a2b38bd26208f933b10b17a (diff) | |
download | gdb-27d3a3fc5909b7545a5014d77dcc5366f3b080df.zip gdb-27d3a3fc5909b7545a5014d77dcc5366f3b080df.tar.gz gdb-27d3a3fc5909b7545a5014d77dcc5366f3b080df.tar.bz2 |
* gdb.threads/threxit-hop-specific.exp: Use "continue" instead
of "next" to proceed over pthread_exit call.
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.threads/threxit-hop-specific.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 7c3ae15..516efae 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2010-09-08 Ulrich Weigand <uweigand@de.ibm.com> + * gdb.threads/threxit-hop-specific.exp: Use "continue" instead + of "next" to proceed over pthread_exit call. + +2010-09-08 Ulrich Weigand <uweigand@de.ibm.com> + * gdb.base/maint.exp: Avoid wildcards against potentially very long "maint print statistics" output to prevent expect timeouts. diff --git a/gdb/testsuite/gdb.threads/threxit-hop-specific.exp b/gdb/testsuite/gdb.threads/threxit-hop-specific.exp index 96b43fe..c2dffc9 100644 --- a/gdb/testsuite/gdb.threads/threxit-hop-specific.exp +++ b/gdb/testsuite/gdb.threads/threxit-hop-specific.exp @@ -52,7 +52,7 @@ gdb_test "break $bpthrline thread 2" \ set bpexitline [gdb_get_line_number "set exit breakpoint here"] gdb_breakpoint "$bpexitline" -gdb_test "next" \ +gdb_test "continue" \ ".*set exit breakpoint here.*" \ "get past the thread specific breakpoint" |