This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[commit] Misc cleanups in async.exp


Hi.

I realize this test is currently disabled, but I found it while writing
another test and figured I'd clean up a few things.

Committed.

2014-03-18  Doug Evans  <xdje42@gmail.com>

	* gdb.base/async.exp: Whitespace fixes.  Turn on target-async.
	Fix spelling of exec-done-display.

diff --git a/gdb/testsuite/gdb.base/async.exp b/gdb/testsuite/gdb.base/async.exp
index 4475ce7..3cd7dfb 100644
--- a/gdb/testsuite/gdb.base/async.exp
+++ b/gdb/testsuite/gdb.base/async.exp
@@ -39,17 +39,19 @@ return 0
 set board [target_info name]
 set current_target [target_info gdb_protocol]
 if { $current_target == "remote" } {
-  unset_board_info "gdb_protocol"
-  set_board_info "gdb_protocol" "async"
-  } else {
-      return 0
-  }
+    unset_board_info "gdb_protocol"
+    set_board_info "gdb_protocol" "async"
+} else {
+    return 0
+}
 
 gdb_exit
 gdb_start
 gdb_reinitialize_dir $srcdir/$subdir
 gdb_load ${binfile}
 
+gdb_test_no_output "set target-async on"
+
 #
 # set it up at a breakpoint so we can play with it
 #
@@ -63,7 +65,7 @@ gdb_test "break baz" ".*" ""
 #
 # Make sure we get a 'completed' message when the target is done.
 #
-gdb_test "set display-exec-done on" ".*" ""
+gdb_test_no_output "set exec-done-display on"
 
 
 send_gdb "next&\n" 
@@ -126,7 +128,7 @@ gdb_expect {
     timeout  { fail "(timeout) until &" }
 }
 
-gdb_test "set display-exec-done off" ".*" ""
+gdb_test_no_output "set exec-done-display off"
 
 unset_board_info "gdb_protocol"
 set_board_info "gdb_protocol" "remote"


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]