This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 31f2faf5cf1 [Aarch64] Add Binutils support for MEC new 02aadca4fbe gdb: remove an out of date comment about disp_del_at_next_stop new 2fd9a436c8d gdb: don't duplicate 'thread' field in MI breakpoint output new c8dfa492106 gdb/testsuite: make more use of mi-support.exp new 1ccc4abbb3d gdb/testsuite: extend the use of mi_clean_restart new 292deeba7d6 gdb/testsuite introduce foreach_mi_ui_mode helper proc new 47171eeb946 gdb/testsuite: introduce is_target_non_stop helper proc new 05ac6365e55 gdb/testsuite: fix failure in gdb.mi/mi-pending.exp with ex [...] new 2968b79fca3 gdb: fix mi breakpoint-deleted notifications for thread-spe [...]
The 8 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gdb/NEWS | 8 + gdb/breakpoint.c | 10 +- gdb/python/py-breakpoint.c | 3 + gdb/python/py-finishbreakpoint.c | 33 ++- gdb/python/python-internal.h | 1 + gdb/testsuite/gdb.base/access-mem-running.exp | 10 +- gdb/testsuite/gdb.base/fork-running-state.exp | 11 +- gdb/testsuite/gdb.mi/mi-break.exp | 17 +- gdb/testsuite/gdb.mi/mi-exec-run.exp | 1 - gdb/testsuite/gdb.mi/mi-multi-commands.exp | 3 +- gdb/testsuite/gdb.mi/mi-nsmoribund.exp | 7 +- gdb/testsuite/gdb.mi/mi-pending.exp | 40 ++- gdb/testsuite/gdb.mi/mi-thread-bp-deleted.c | 88 +++++++ gdb/testsuite/gdb.mi/mi-thread-bp-deleted.exp | 290 +++++++++++++++++++++ gdb/testsuite/gdb.mi/mi-thread-specific-bp.c | 44 ++++ gdb/testsuite/gdb.mi/mi-thread-specific-bp.exp | 49 ++++ gdb/testsuite/gdb.mi/mi-watch.exp | 17 +- gdb/testsuite/gdb.mi/new-ui-mi-sync.exp | 8 +- .../gdb.mi/user-selected-context-sync.exp | 8 +- .../gdb.threads/access-mem-running-thread-exit.exp | 10 +- gdb/testsuite/gdb.threads/clone-attach-detach.exp | 11 +- gdb/testsuite/gdb.threads/detach-step-over.exp | 8 +- gdb/testsuite/gdb.threads/thread-bp-deleted.c | 88 +++++++ gdb/testsuite/gdb.threads/thread-bp-deleted.exp | 210 +++++++++++++++ gdb/testsuite/lib/gdb.exp | 22 ++ gdb/testsuite/lib/mi-support.exp | 117 +++++++-- gdb/thread.c | 2 + 27 files changed, 984 insertions(+), 132 deletions(-) create mode 100644 gdb/testsuite/gdb.mi/mi-thread-bp-deleted.c create mode 100644 gdb/testsuite/gdb.mi/mi-thread-bp-deleted.exp create mode 100644 gdb/testsuite/gdb.mi/mi-thread-specific-bp.c create mode 100644 gdb/testsuite/gdb.mi/mi-thread-specific-bp.exp create mode 100644 gdb/testsuite/gdb.threads/thread-bp-deleted.c create mode 100644 gdb/testsuite/gdb.threads/thread-bp-deleted.exp