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

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