diff options
author | Michael Chastain <mec@google.com> | 2004-06-03 22:10:56 +0000 |
---|---|---|
committer | Michael Chastain <mec@google.com> | 2004-06-03 22:10:56 +0000 |
commit | 4013522b5c408deb4dd8a023a6477fa5872c9922 (patch) | |
tree | da4870990fa268e475de934ad2bca09e0218ed3f /gdb/testsuite/gdb.threads | |
parent | c8a3b559eb7f26309b473fd6dd9fc11b10de7001 (diff) | |
download | gdb-4013522b5c408deb4dd8a023a6477fa5872c9922.zip gdb-4013522b5c408deb4dd8a023a6477fa5872c9922.tar.gz gdb-4013522b5c408deb4dd8a023a6477fa5872c9922.tar.bz2 |
2004-06-02 Michael Chastain <mec.gnu@mindspring.com>
Fix PR gdb/1636.
* gdb.threads/manythreads.exp: Change asynchronous 'after'
calls to synchronous.
Diffstat (limited to 'gdb/testsuite/gdb.threads')
-rw-r--r-- | gdb/testsuite/gdb.threads/manythreads.exp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.threads/manythreads.exp b/gdb/testsuite/gdb.threads/manythreads.exp index dcedd7f..a2baf84 100644 --- a/gdb/testsuite/gdb.threads/manythreads.exp +++ b/gdb/testsuite/gdb.threads/manythreads.exp @@ -60,7 +60,8 @@ gdb_test_multiple "continue" "first continue" { } # Send a Ctrl-C and verify that we can do info threads and continue -after 1000 {send_gdb "\003"} +after 1000 +send_gdb "\003" set message "stop threads 1" gdb_test_multiple "" "stop threads 1" { -re "\\\[New \[^\]\]*\\\]\r\n" { @@ -93,7 +94,8 @@ gdb_test_multiple "continue" "second continue" { } # Send another Ctrl-C and verify that we can do info threads and quit -after 1000 {send_gdb "\003"} +after 1000 +send_gdb "\003" set message "stop threads 2" gdb_test_multiple "" "stop threads 2" { -re "\\\[New \[^\]\]*\\\]\r\n" { |