+2011-06-20  Marek Polacek  <mpolacek@redhat.com>
+
+        * gdb.mi/mi-nsintrall.exp: Replace gdb_test_multiple with mi_gdb_test.
+
 2011-06-20  Marek Polacek  <mpolacek@redhat.com>
 
         * gdb.mi/mi-nsmoribund.exp: Replace gdb_test_multiple with
 
 # now that we know about all the threads, we can get rid of the breakpoints
 mi_delete_breakpoints
 
+# Here we create a response string.  Note we don't want \r\n at the end,
+# since mi_gdb_test will append this itself.
 set running_re ""
-for {set i 6} {$i > 0} {incr i -1} {
+for {set i 6} {$i > 1} {incr i -1} {
     set running_re "$running_re\\*running,thread-id=\"$i\"\r\n"
 }
+set running_re "$running_re\\*running,thread-id=\"1\""
+
+mi_gdb_test "-exec-continue --all" "\[^\n\]*\r\n$running_re" \
+    "resume all, no breakpoint"
 
-gdb_test_multiple "-exec-continue --all" "resume all, no breakpoint" {
-    -re ".*$running_re$mi_gdb_prompt" {
-       pass "resume all, no breakpoint"
-    }
-}
 mi_check_thread_states \
     {"running" "running" "running" "running" "running" "running"} \
     "thread state, resume all"
     "thread state, all interrupted"
 
 # resume all threads, and check that no thread is spuriously left interrupted
-gdb_test_multiple "-exec-continue --all" "resume all after interrupting" {
-    -re ".*$running_re$mi_gdb_prompt" {
-       pass "resume all after interrupting"
-    }
-}
+mi_gdb_test "-exec-continue --all" "\[^\n\]*\r\n$running_re" \
+    "resume all after interrupting"
 
 sleep 1
 mi_check_thread_states \