* lib/mi-support.exp (mi_send_resuming_command_raw): Revert
authorVladimir Prus <vladimir@codesourcery.com>
Sat, 28 Jun 2008 11:31:02 +0000 (11:31 +0000)
committerVladimir Prus <vladimir@codesourcery.com>
Sat, 28 Jun 2008 11:31:02 +0000 (11:31 +0000)
previous commit.  Add a comment.

gdb/testsuite/ChangeLog
gdb/testsuite/lib/mi-support.exp

index 32256e792fcd632810b7a6d5f728ecabe5a97fa0..a52fe675388bb03916f58879471f00d4fd343a47 100644 (file)
@@ -1,3 +1,8 @@
+2008-06-28  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * lib/mi-support.exp (mi_send_resuming_command_raw): Revert
+       previous commit.  Add a comment.
+
 2008-06-28  Pedro Alves  <pedro@codesourcery.com>
 
        * gdb.base/sigchld.c, gdb.base/sigchld.exp: New test.
index bad7c6279839a5df97aee6ac3cb69bf252216864..e4d9580931d322dee09c802b48017ad41d06b507 100644 (file)
@@ -1398,7 +1398,15 @@ proc mi_send_resuming_command_raw {command test} {
     send_gdb "$command\n"
     gdb_expect {
         -re "\\^running\r\n\\*running,thread-id=\"\[^\"\]+\"\r\n${mi_gdb_prompt}" {
-            pass "$test"
+            # Note that lack of 'pass' call here -- this works around limitation
+            # in DejaGNU xfail mechanism. mi-until.exp has this:
+            #
+            #     setup_kfail gdb/2104 "*-*-*"
+            #     mi_execute_to ...
+            # 
+            # and mi_execute_to uses mi_send_resuming_command.  If we use 'pass' here,
+            # it will reset kfail, so when the actual test fails, it will be flagged
+            # as real failure.
         }
         -re ".*${mi_gdb_prompt}" {
             fail "$test (failed to resume)"
This page took 0.039306 seconds and 4 git commands to generate.