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

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