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

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