* gdb.base/completion.exp: Clarify indentation.
authorJim Blandy <jimb@codesourcery.com>
Tue, 4 Dec 2001 16:18:15 +0000 (16:18 +0000)
committerJim Blandy <jimb@codesourcery.com>
Tue, 4 Dec 2001 16:18:15 +0000 (16:18 +0000)
gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/completion.exp

index 824e52b..a57d02f 100644 (file)
@@ -1,3 +1,7 @@
+2001-12-04  Jim Blandy  <jimb@redhat.com>
+
+       * gdb.base/completion.exp: Clarify indentation.
+
 2001-12-03  Jim Blandy  <jimb@redhat.com>
 
        * gdb.asm/s390.inc (gdbasm_datavar): Use `.long' to create `int'
index ccd53c3..d93f575 100644 (file)
@@ -470,19 +470,28 @@ gdb_expect {
 
 send_gdb "p b-a\t"
 sleep 1
-gdb_expect  {
-        -re "^p b-a\\\x07$"\
-            { send_gdb "\n"
-              gdb_expect {
-                      -re "No symbol \"b\" in current context\\..*$gdb_prompt $"\
-                                        { pass "complete 'p b-a'"}
-                      -re ".*$gdb_prompt $" { fail "complete 'p b-a'"}
-                      timeout           {fail "(timeout) complete 'p b-a'"}
-                     }
+gdb_expect {
+    -re "^p b-a\\\x07$" {
+        send_gdb "\n"
+        gdb_expect {
+            -re "No symbol \"b\" in current context\\..*$gdb_prompt $" {
+                pass "complete 'p b-a'"
+            }
+            -re ".*$gdb_prompt $" {
+                fail "complete 'p b-a'"
+            }
+            timeout {
+                fail "(timeout) complete 'p b-a'"
             }
-        -re ".*$gdb_prompt $"       { fail "complete 'p b-a'" }
-        timeout         { fail "(timeout) complete 'p b-a'" }
         }
+    }
+    -re ".*$gdb_prompt $" {
+        fail "complete 'p b-a'"
+    }
+    timeout {
+        fail "(timeout) complete 'p b-a'"
+    }
+}
 
 send_gdb "p b-a\t"
 sleep 1