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

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