2007/10/09 Pierre Muller <muller@ics.u-strasbg.fr>
authorPierre Muller <muller@sourceware.org>
Tue, 9 Oct 2007 15:08:02 +0000 (15:08 +0000)
committerPierre Muller <muller@sourceware.org>
Tue, 9 Oct 2007 15:08:02 +0000 (15:08 +0000)
* lib/gdb.exp (gdb_run_cmd): Move comment outside
of gdb_expect call, to avoid interruption.

gdb/testsuite/ChangeLog
gdb/testsuite/lib/gdb.exp

index 61b007adb5bca849765951c92e785a80beacb984..2906055991c31bdc1adfed7c63668d2f8d9496ca 100644 (file)
@@ -1,3 +1,8 @@
+2007/10/09  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * lib/gdb.exp (gdb_run_cmd): Move comment outside
+       of gdb_expect call, to avoid interruption.
+
 2007-10-09  Pedro Alves  <pedro_alves@portugalmail.pt>
 
        * gdb.base/whatis.c (v_long_long, v_signed_long_long)
index 48b62f45eb7974642f8fe7eab4f674f99dac28dd..b08748af66242974d8d8a65675fd334b2b618cc8 100644 (file)
@@ -275,13 +275,13 @@ proc gdb_run_cmd {args} {
     }
     send_gdb "run $args\n"
 # This doesn't work quite right yet.
-    gdb_expect 60 {
+# Use -notransfer here so that test cases (like chng-sym.exp)
+# may test for additional start-up messages.
+   gdb_expect 60 {
        -re "The program .* has been started already.*y or n. $" {
            send_gdb "y\n"
            exp_continue
        }
-       # Use -notransfer here so that test cases (like chng-sym.exp)
-       # may test for additional start-up messages.
        -notransfer -re "Starting program: \[^\r\n\]*" {}
     }
 }