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 c89f9f2a52 Automatic date update in version.in adds 567238c956 Prefer symtab symbol over minsym for function names in non-c [...] adds 2dc80cf8a5 Restrict use of minsym names when printing addresses in disa [...] adds 1aff717310 dwarf2-frame.c: Fix FDE processing bug involving non-contigu [...] adds 5c076da45c Improve test gdb.dwarf2/dw2-ranges-func.exp adds 98a617f8d5 Fix stepping bug associated with non-contiguous blocks adds 6bdfee8157 Fix gdb.python/py-thrhandle.exp failures for -m32 multilib adds 1c316af29f Automatic date update in version.in adds c3786b3aa3 A virtual terminal for the test suite adds d95fc6eec0 Add test for "layout asm" adds f790b310d2 Add "layout split" test adds fe1f56ee14 Add TUI register window test adds 58ac439d38 Add TUI test for "list" adds ded631d57d Add TUI resizing test adds 2b1d00c2b8 Add test case for empty TUI windows adds 52b75bf1dc Add test that "file" shows "main" adds 4538d1c7c4 PR24857, ld: error adding symbols: bad value adds ac50aea131 Automatic date update in version.in adds cc5277b173 Support .gnu.lto_.lto section in ELF files (PR 24768). adds d17725d72f [gdb/testsuite] Don't expect gdb_prompt in mi_skip_python_test adds b528dae095 [gdb/testsuite] Fix gdb.base/define.exp with check-read1 adds 9197cd8b52 [gdb/testsuite] Fix gdb.base/maint.exp with check-read1 adds 2d274232f3 [gdb/testsuite] Fix mi-catch-cpp-exceptions.exp and mi-nonst [...] adds 5beafce944 [gdb/testsuite] Fix python.exp with check-read1 adds 507dd60e28 [gdb/testsuite, 1/2] Fix gdb.linespec/explicit.exp with check-read1 adds de28a3b72e [gdb/testsuite, 2/2] Fix gdb.linespec/explicit.exp with check-read1 adds 4b5e8d19af Implement 'set print frame-info|frame-arguments presence'. adds c7e4c0a648 Test 'set print frame-info|frame-arguments presence'. adds bc4268a5d9 Document 'set print frame-info|frame-arguments presence'. adds 3d2357068b Two fixes for test suite's terminal adds e48de49be5 Automatic date update in version.in adds c620ed8866 Add Objfile.lookup_{global,static}_symbol functions adds 25ec892484 Fix misspelling (nonexistant -> nonexistent) new 34d5c40a07 Re: Support .gnu.lto_.lto section in ELF files
The 1 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: bfd/ChangeLog | 27 + bfd/archive.c | 21 +- bfd/bfd-in2.h | 3 + bfd/bfd.c | 3 + bfd/elf.c | 23 + bfd/elflink.c | 26 +- bfd/linker.c | 24 +- bfd/version.h | 2 +- binutils/ChangeLog | 7 + binutils/nm.c | 23 +- gdb/ChangeLog | 82 +++ gdb/NEWS | 22 + gdb/disasm.c | 12 +- gdb/doc/ChangeLog | 12 + gdb/doc/gdb.texinfo | 63 +- gdb/doc/python.texi | 17 + gdb/dwarf2-frame.c | 8 +- gdb/extension.h | 5 +- gdb/frame.h | 37 +- gdb/infrun.c | 37 +- gdb/linux-thread-db.c | 19 +- gdb/printcmd.c | 29 +- gdb/python/py-framefilter.c | 90 ++- gdb/python/py-objfile.c | 78 +++ gdb/stack.c | 197 +++--- gdb/stack.h | 12 + gdb/testsuite/ChangeLog | 119 ++++ gdb/testsuite/gdb.base/define.exp | 2 +- gdb/testsuite/gdb.base/frame-args.exp | 60 ++ gdb/testsuite/gdb.base/maint.exp | 6 +- gdb/testsuite/gdb.base/options.exp | 1 + ...dw2-ranges-func.c => dw2-ranges-func-hi-cold.c} | 44 +- ...dw2-ranges-func.c => dw2-ranges-func-lo-cold.c} | 20 +- gdb/testsuite/gdb.dwarf2/dw2-ranges-func.exp | 704 +++++++++++---------- gdb/testsuite/gdb.linespec/explicit.exp | 17 +- .../gdb.python/py-framefilter-invalidarg.exp | 2 +- gdb/testsuite/gdb.python/py-framefilter.exp | 72 ++- gdb/testsuite/gdb.python/py-objfile.c | 3 + gdb/testsuite/gdb.python/py-objfile.exp | 14 + gdb/testsuite/gdb.python/python.exp | 4 +- gdb/testsuite/gdb.tui/basic.exp | 55 ++ gdb/testsuite/gdb.tui/empty.exp | 103 +++ gdb/testsuite/gdb.tui/list.exp | 37 ++ gdb/testsuite/gdb.tui/main.exp | 34 + gdb/testsuite/gdb.tui/regs.exp | 48 ++ gdb/testsuite/gdb.tui/resize.exp | 42 ++ gdb/testsuite/lib/gdb.exp | 36 +- gdb/testsuite/lib/tuiterm.exp | 601 ++++++++++++++++++ gdb/valprint.h | 13 +- gold/ChangeLog | 11 + gold/layout.h | 10 + gold/object.cc | 31 +- 52 files changed, 2427 insertions(+), 541 deletions(-) copy gdb/testsuite/gdb.dwarf2/{dw2-ranges-func.c => dw2-ranges-func-hi-cold.c} (85%) rename gdb/testsuite/gdb.dwarf2/{dw2-ranges-func.c => dw2-ranges-func-lo-cold.c} (85%) create mode 100644 gdb/testsuite/gdb.tui/basic.exp create mode 100644 gdb/testsuite/gdb.tui/empty.exp create mode 100644 gdb/testsuite/gdb.tui/list.exp create mode 100644 gdb/testsuite/gdb.tui/main.exp create mode 100644 gdb/testsuite/gdb.tui/regs.exp create mode 100644 gdb/testsuite/gdb.tui/resize.exp create mode 100644 gdb/testsuite/lib/tuiterm.exp