diff options
author | Michael Snyder <msnyder@vmware.com> | 2010-06-02 21:53:28 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2010-06-02 21:53:28 +0000 |
commit | 12b5d08a7553953ab0c089fed79ff3c2e8389457 (patch) | |
tree | 1fffcdd5bb91226630f3726bb87d51c23dd49732 /gdb/testsuite/gdb.threads/watchthreads.exp | |
parent | 894933089d664b0d6aafbd804428de7c104a5f61 (diff) | |
download | gdb-12b5d08a7553953ab0c089fed79ff3c2e8389457.zip gdb-12b5d08a7553953ab0c089fed79ff3c2e8389457.tar.gz gdb-12b5d08a7553953ab0c089fed79ff3c2e8389457.tar.bz2 |
2010-06-02 Michael Snyder <msnyder@vmware.com>
* gdb.threads/fork-thread-pending.exp: Use gdb_test_no_output.
* gdb.threads/hand-call-in-thraeds.exp: Ditto.
* gdb.threads/local-watch-wrong-thread.exp: Ditto.
* gdb.threads/manythreads.exp: Ditto.
* gdb.threads/print-threads.exp: Ditto.
* gdb.threads/pthreads.exp: Ditto.
* gdb.threads/schedlock.exp: Ditto.
* gdb.threads/staticthreads.exp: Ditto.
* gdb.threads/thread-specific.exp: Ditto.
* gdb.threads/thread-unwindonsignal.exp: Ditto.
* gdb.threads/threadapply.exp: Ditto.
* gdb.threads/watchthreads.exp: Ditto.
* gdb.threads/watchthreads2.exp: Ditto.
Diffstat (limited to 'gdb/testsuite/gdb.threads/watchthreads.exp')
-rw-r--r-- | gdb/testsuite/gdb.threads/watchthreads.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.threads/watchthreads.exp b/gdb/testsuite/gdb.threads/watchthreads.exp index df27b0b..0ab7839 100644 --- a/gdb/testsuite/gdb.threads/watchthreads.exp +++ b/gdb/testsuite/gdb.threads/watchthreads.exp @@ -128,10 +128,10 @@ for {set i 0} {$i < 30} {incr i} { # 10 is chosen so we're guaranteed to come through here. if { $hwwp_2_enabled && $hwwp_3_enabled } { if { $args_0 >= 10 && $hwwp_2_enabled } { - gdb_test "disable 2" "" "disable first watchpoint at 10" + gdb_test_no_output "disable 2" "disable first watchpoint at 10" set hwwp_2_enabled 0 } elseif { $args_1 >= 10 && $hwwp_3_enabled } { - gdb_test "disable 3" "" "disable first watchpoint at 10" + gdb_test_no_output "disable 3" "disable first watchpoint at 10" set hwwp_3_enabled 0 } } |