b288fe5a9a
* Per-inferior thread numbers. * Breakpoint "explicit locations" (via CLI and GDB/MI). * New convenience variables ($_gthread, $_inferior). * Record btrace now supports non-stop mode. * Various improvements on AArch64 GNU/Linux: - Multi-architecture debugging support. - displaced stepping. - tracepoint support added in GDBserver. * In Ada, the overloads selection menu provides the parameter types and return types for the matching overloaded subprograms. * Various remote protocol improvements, including several new packets which can be used to support features such as follow-exec-mode, exec catchpoints, syscall catchpoints, etc. * Some minor improvements in the Python API for extending GDB. - Added new patches from Fedora: gdb-fedora-libncursesw.patch gdb-fortran-stride-intel-1of6.patch gdb-fortran-stride-intel-2of6.patch gdb-fortran-stride-intel-3of6.patch gdb-fortran-stride-intel-4of6.patch gdb-fortran-stride-intel-5of6.patch gdb-fortran-stride-intel-6of6-nokfail.patch gdb-fortran-stride-intel-6of6.patch gdb-opcodes-clflushopt-test.patch gdb-testsuite-readline63-sigint.patch - Removed obsolete patches: gdb-6.3-bz231832-obstack-2gb.patch gdb-pahole-python2.patch gdb-probes-based-interface-robust-1of2.patch OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gdb?expand=0&rev=132
40 lines
1.3 KiB
Diff
40 lines
1.3 KiB
Diff
gdb/users/ppalka/readline-7.0-update
|
|
commit 379059215e823555a37a8dc7e02cef8fd86566e4
|
|
https://sourceware.org/ml/gdb-patches/2015-07/msg00422.html
|
|
Message-Id: <1436927724-4059-1-git-send-email-patrick@parcs.ath.cx>
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=1301175
|
|
|
|
Index: gdb-7.10.50.20160131/gdb/testsuite/gdb.gdb/selftest.exp
|
|
===================================================================
|
|
--- gdb-7.10.50.20160131.orig/gdb/testsuite/gdb.gdb/selftest.exp 2016-01-31 19:44:47.156963419 +0100
|
|
+++ gdb-7.10.50.20160131/gdb/testsuite/gdb.gdb/selftest.exp 2016-01-31 19:45:11.245135173 +0100
|
|
@@ -458,9 +458,25 @@
|
|
}
|
|
|
|
set description "send SIGINT signal to child process"
|
|
- gdb_test "signal SIGINT" \
|
|
- "Continuing with signal SIGINT.*" \
|
|
- "$description"
|
|
+ gdb_test_multiple "signal SIGINT" "$description" {
|
|
+ -re "^signal SIGINT\r\nContinuing with signal SIGINT.\r\nQuit\r\n" {
|
|
+ pass "$description"
|
|
+ }
|
|
+ }
|
|
+
|
|
+ set description "send ^C to child process again"
|
|
+ send_gdb "\003"
|
|
+ gdb_expect {
|
|
+ -re "(Thread .*|Program) received signal SIGINT.*$gdb_prompt $" {
|
|
+ pass "$description"
|
|
+ }
|
|
+ -re ".*$gdb_prompt $" {
|
|
+ fail "$description"
|
|
+ }
|
|
+ timeout {
|
|
+ fail "$description (timeout)"
|
|
+ }
|
|
+ }
|
|
|
|
# Switch back to the GDB thread if Guile support is linked in.
|
|
# "signal SIGINT" could also switch the current thread.
|