Blame SOURCES/gdb-testsuite-readline63-sigint-revert.patch

7a6771
diff --git b/gdb/testsuite/gdb.gdb/selftest.exp a/gdb/testsuite/gdb.gdb/selftest.exp
7a6771
index 7e6a4e1..969797a 100644
7a6771
--- b/gdb/testsuite/gdb.gdb/selftest.exp
7a6771
+++ a/gdb/testsuite/gdb.gdb/selftest.exp
7a6771
@@ -451,25 +451,9 @@ proc test_with_self { executable } {
7a6771
     }
7a6771
     
7a6771
     set description "send SIGINT signal to child process"
7a6771
-    gdb_test_multiple "signal SIGINT" "$description" {
7a6771
-	-re "^signal SIGINT\r\nContinuing with signal SIGINT.\r\nQuit\r\n" {
7a6771
-	    pass "$description"
7a6771
-	}
7a6771
-    }
7a6771
-
7a6771
-    set description "send ^C to child process again"
7a6771
-    send_gdb "\003"
7a6771
-    gdb_expect {
7a6771
-	-re "(Thread .*|Program) received signal SIGINT.*$gdb_prompt $" {
7a6771
-	    pass "$description"
7a6771
-	}
7a6771
-	-re ".*$gdb_prompt $" {
7a6771
-	    fail "$description"
7a6771
-	}
7a6771
-	timeout {
7a6771
-	    fail "$description (timeout)"
7a6771
-	}
7a6771
-    }
7a6771
+    gdb_test "signal SIGINT" \
7a6771
+	"Continuing with signal SIGINT.*" \
7a6771
+	"$description"
7a6771
 
7a6771
     # Switch back to the GDB thread if Guile support is linked in.
7a6771
     # "signal SIGINT" could also switch the current thread.