This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-stable-allyesconfig in repository toolchain/ci/binutils-gdb.
from af2c48d854 ld: Pass -z notext to linker for tests with DT_TEXTREL adds 07e0bb0fb2 ld-x86-64: Pass -z notext to linker for tests with DT_TEXTREL adds 42cf184456 [gdb/testsuite] Add comment in exec_is_pie adds 92651b1d91 gdb: Move construct_inferior_arguments to gdbsupport adds c699004a29 gdbsupport: Adapt construct_inferior_arguments adds 8c4b5f3d98 gdbsupport: Let construct_inferior_arguments take gdb::array [...] adds b69ca137ac gdbserver: Don't add extra NULL to program args adds ace6b9195e nto_process_target::create_inferior: Pass args as char ** adds bea571ebd7 Use construct_inferior_arguments which handles special chars adds 7dbfcd6f79 gdbsupport: Drop now unused function 'stringify_argv' adds 75d0451240 gdb/testsuite: support passing inferior arguments with nativ [...] adds 6cf66e763a gdb/testsuite: add inferior arguments test adds 462f72c552 gdb/testsuite: add simavr.exp board adds 1218a4bf49 gdb: make avr_integer_to_address generate code or data addre [...] adds 043e2e02c0 [gdb/testsuite] Add target board gold-gdb-index adds 68dc60e6a7 ELF: Updated comments for ET_EXEC and ET_DYN adds 6c115e16ca gas: Silence GCC 10 warning on tc-cr16.c adds dcb5d41bef Automatic date update in version.in adds 9fcc34577e tc-cr16.c: Use memmove to concatenate 2 overlapping strings adds c6412eeea9 gas: Silence GCC 10 warning on tc-mcore.c adds 40d22035a7 [gdb/testsuite] Add test-case gold-gdb-index.exp
No new revisions were added by this update.
Summary of changes: bfd/version.h | 2 +- gas/ChangeLog | 16 +++ gas/config/tc-cr16.c | 7 +- gas/config/tc-mcore.c | 2 +- gdb/ChangeLog | 12 ++ gdb/avr-tdep.c | 5 +- gdb/infcmd.c | 134 +-------------------- gdb/inferior.h | 2 - gdb/testsuite/ChangeLog | 41 +++++++ gdb/testsuite/boards/gold-gdb-index.exp | 45 +++++++ gdb/testsuite/boards/native-extended-gdbserver.exp | 2 +- gdb/testsuite/boards/native-gdbserver.exp | 3 - gdb/testsuite/boards/simavr.exp | 95 +++++++++++++++ gdb/testsuite/boards/stdio-gdbserver-base.exp | 2 +- gdb/testsuite/config/gdbserver.exp | 12 +- gdb/testsuite/gdb.base/a2-run.exp | 11 +- gdb/testsuite/gdb.base/args.exp | 6 + .../testsuite/gdb.base/gold-gdb-index-2.c | 17 ++- .../testsuite/gdb.base/gold-gdb-index.c | 21 ++-- gdb/testsuite/gdb.base/gold-gdb-index.exp | 48 ++++++++ .../testsuite/gdb.base/gold-gdb-index.h | 21 ++-- .../testsuite/gdb.base/inferior-args.c | 18 +-- gdb/testsuite/gdb.base/inferior-args.exp | 124 +++++++++++++++++++ gdb/testsuite/lib/gdb.exp | 58 ++++++--- gdbserver/ChangeLog | 23 ++++ gdbserver/linux-low.cc | 2 +- gdbserver/lynx-low.cc | 2 +- gdbserver/nto-low.cc | 3 +- gdbserver/server.cc | 4 +- gdbserver/win32-low.cc | 2 +- gdbsupport/ChangeLog | 22 ++++ gdbsupport/common-inferior.cc | 99 +++++++++++++++ gdbsupport/common-inferior.h | 7 ++ gdbsupport/common-utils.cc | 23 ---- gdbsupport/common-utils.h | 4 - include/ChangeLog | 4 + include/elf/common.h | 5 +- ld/ChangeLog | 4 + ld/testsuite/ld-x86-64/x86-64.exp | 4 +- 39 files changed, 665 insertions(+), 247 deletions(-) create mode 100644 gdb/testsuite/boards/gold-gdb-index.exp create mode 100644 gdb/testsuite/boards/simavr.exp copy gdbsupport/common-inferior.cc => gdb/testsuite/gdb.base/gold-gdb-index-2.c (68%) copy gdbsupport/common-inferior.cc => gdb/testsuite/gdb.base/gold-gdb-index.c (68%) create mode 100644 gdb/testsuite/gdb.base/gold-gdb-index.exp copy gdbsupport/common-inferior.cc => gdb/testsuite/gdb.base/gold-gdb-index.h (67%) copy gdbsupport/common-inferior.cc => gdb/testsuite/gdb.base/inferior-args.c (68%) create mode 100644 gdb/testsuite/gdb.base/inferior-args.exp