diff options
author | Michael Snyder <msnyder@specifix.com> | 2007-03-02 22:16:06 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@specifix.com> | 2007-03-02 22:16:06 +0000 |
commit | f7bda8a4c3ddd6511e9f52bce0954775c8fa780e (patch) | |
tree | c5670637b389571f5a24fb6d665995a6eef29bd8 /gdb/testsuite | |
parent | 3e310776942b40f403656dd2756ad5e25b99f3e6 (diff) | |
download | gdb-f7bda8a4c3ddd6511e9f52bce0954775c8fa780e.tar.gz |
2007-03-02 Michael Snyder <michael.snyder@palmsource.com>
* gdb.threads/manythreads.exp: Use $message string for
consistancy; add a default (timeout) case.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.threads/manythreads.exp | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index d571b5a7e1e..5597bc34cf2 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2007-03-02 Michael Snyder <michael.snyder@palmsource.com> + * gdb.threads/manythreads.exp: Use $message string for + consistancy; add a default (timeout) case. + +2007-03-02 Michael Snyder <michael.snyder@palmsource.com> + * gdb.base/watchpoint.exp: Fix truncated comment. 2007-03-02 Michael Snyder <michael.snyder@palmsource.com> diff --git a/gdb/testsuite/gdb.threads/manythreads.exp b/gdb/testsuite/gdb.threads/manythreads.exp index 7569f021146..903a3b14436 100644 --- a/gdb/testsuite/gdb.threads/manythreads.exp +++ b/gdb/testsuite/gdb.threads/manythreads.exp @@ -108,7 +108,10 @@ gdb_test_multiple "" "stop threads 2" { exp_continue } -re "Program received signal SIGINT.*$gdb_prompt $" { - pass "stop threads 2" + pass "$message" + } + timeout { + fail "$message (timeout)" } } |