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/hand-call-in-threads.exp | |
parent | 894933089d664b0d6aafbd804428de7c104a5f61 (diff) | |
download | fsf-binutils-gdb-12b5d08a7553953ab0c089fed79ff3c2e8389457.zip fsf-binutils-gdb-12b5d08a7553953ab0c089fed79ff3c2e8389457.tar.gz fsf-binutils-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/hand-call-in-threads.exp')
-rw-r--r-- | gdb/testsuite/gdb.threads/hand-call-in-threads.exp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/testsuite/gdb.threads/hand-call-in-threads.exp b/gdb/testsuite/gdb.threads/hand-call-in-threads.exp index 572982a..9338330 100644 --- a/gdb/testsuite/gdb.threads/hand-call-in-threads.exp +++ b/gdb/testsuite/gdb.threads/hand-call-in-threads.exp @@ -81,7 +81,7 @@ gdb_test "continue" \ # Before we start making hand function calls, turn on scheduler locking. -gdb_test "set scheduler-locking on" "" "enable scheduler locking" +gdb_test_no_output "set scheduler-locking on" "enable scheduler locking" gdb_test "show scheduler-locking" ".* locking scheduler .* is \"on\"." "show scheduler locking on" # Now hand-call a function in each thread, having the function @@ -100,7 +100,7 @@ for { set i 1 } { $i <= $total_nr_threads } { incr i } { # Now have each hand-called function return. # Turn confirmation off for the "return" command. -gdb_test "set confirm off" "" +gdb_test_no_output "set confirm off" clear_xfail "*-*-*" @@ -133,8 +133,8 @@ gdb_test_multiple "maint print dummy-frames" "all dummies popped" { } } -# Before we resume the full program, turn of scheduler locking. -gdb_test "set scheduler-locking off" "" "disable scheduler locking" +# Before we resume the full program, turn off scheduler locking. +gdb_test_no_output "set scheduler-locking off" "disable scheduler locking" gdb_test "show scheduler-locking" ".* locking scheduler .* is \"off\"." "show scheduler locking off" # Continue one last time, the program should exit normally. |