binutils-gdb/gdb/testsuite/gdb.base
Tom de Vries 31aceee863 [gdb] Fix gdb crash when reading core file
Consider the test-case from this patch, compiled with O0.

The executable segfaults, and generates a core dump:
...
$ ./a.out
Segmentation fault (core dumped)
...

When loading the core file, limiting stack size to 4MB, gdb crashes:
...
$ ulimit -s 4096
$ gdb -batch ./a.out core.saved
[New LWP 19379]
Segmentation fault (core dumped)
...

The crash originates here in linux_vsyscall_range_raw, where we call alloca
with phdrs_size == 4194112 (roughly 4MB):
...
      phdrs = (Elf_Internal_Phdr *) alloca (phdrs_size);
...

While for this test-case gdb runs fine with the system default stack limit of
8MB, there are cases reported of 12MB phdrs_size where gdb also crashes with
the system default stack limit.

Fix this by using xmalloc instead of alloca, which prevents the crash provided
the stack limit is at least 112kb.

Build and reg-tested on x86_64-linux.

2018-11-06  Tom de Vries  <tdevries@suse.de>

	* linux-tdep.c (linux_vsyscall_range_raw): Use xmalloc to allocate
	program headers.

	* gdb.base/many-headers.c: New test.
	* gdb.base/many-headers.exp: New file.
2018-11-06 23:15:41 +01:00
..
comp-dir/subdir
gdbinit-history
a2-run.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
advance.c
advance.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
alias.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
align.exp Handle alignof and _Alignof 2018-04-30 11:25:31 -06:00
all-architectures-0.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
all-architectures-1.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
all-architectures-2.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
all-architectures-3.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
all-architectures-4.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
all-architectures-5.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
all-architectures-6.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
all-architectures-7.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
all-architectures.exp.in Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
all-bin.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
all-types.c
annota-input-while-running.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
annota-input-while-running.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
annota1.c
annota1.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
annota3.c
annota3.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
anon.c
anon.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
args.c
args.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
argv0-symlink.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
argv0-symlink.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arithmet.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arrayidx.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
arrayidx.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
asmlabel.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
asmlabel.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
assign.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
async-shell.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
async-shell.exp Testsuite: fully migrate to use_gdb_stub convenience func 2018-03-23 10:38:23 +01:00
async.c
async.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
attach-non-pgrp-leader.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
attach-non-pgrp-leader.exp Enable 'set print inferior-events' and improve detach/fork/kill/exit messages 2018-04-24 15:46:15 -04:00
attach-pie-misread.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
attach-pie-misread.exp Testsuite: fully migrate to use_gdb_stub convenience func 2018-03-23 10:38:23 +01:00
attach-pie-noexec.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
attach-pie-noexec.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
attach-twice.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
attach-twice.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
attach-wait-input.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
attach-wait-input.exp Testsuite: fully migrate to use_gdb_stub convenience func 2018-03-23 10:38:23 +01:00
attach.c
attach.exp Clean up "Reading symbols" output 2018-10-04 13:40:10 -06:00
attach2.c
auto-connect-native-target.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
auto-connect-native-target.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
auto-load-script Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
auto-load.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
auto-load.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
auxv.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
auxv.exp Remove a bunch of usages of gdb_suppress_tests in 'runto_main'. 2018-10-27 14:47:36 +02:00
average.c
bad-file.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bang.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bar.c
batch-exit-status.bad-commands Indicate batch mode failures by exiting with nonzero status 2018-08-29 16:11:50 +01:00
batch-exit-status.exp Fix batch exit status test failure on Fedora 28 2018-09-04 15:29:20 +01:00
batch-exit-status.good-commands Indicate batch mode failures by exiting with nonzero status 2018-08-29 16:11:50 +01:00
batch-preserve-term-settings.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
batch-preserve-term-settings.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
baz.c
bfp-test.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bfp-test.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bg-execution-repeat.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bg-execution-repeat.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bigcore.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bigcore.exp Remove a bunch of usages of gdb_suppress_tests in 'runto_main'. 2018-10-27 14:47:36 +02:00
bitfields.c
bitfields.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bitfields2.c
bitfields2.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bitops.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bp-cmds-continue-ctrl-c.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bp-cmds-continue-ctrl-c.exp Fix GDB crash after Quit thrown from unwinder sniffer 2018-02-14 18:59:00 +00:00
bp-cmds-execution-x-script.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bp-cmds-execution-x-script.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bp-cmds-execution-x-script.gdb Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bp-permanent.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bp-permanent.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
branch-to-self.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
branch-to-self.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-always.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-always.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-caller-line.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-caller-line.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-entry.exp Testsuite: fully migrate to use_gdb_stub convenience func 2018-03-23 10:38:23 +01:00
break-fun-addr.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-fun-addr1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-fun-addr2.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-idempotent.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-idempotent.exp Clean up "Reading symbols" output 2018-10-04 13:40:10 -06:00
break-include.c wrong line number in breakpoint location 2018-01-21 23:14:50 -05:00
break-include.exp wrong line number in breakpoint location 2018-01-21 23:14:50 -05:00
break-include.inc wrong line number in breakpoint location 2018-01-21 23:14:50 -05:00
break-inline.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-inline.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-interp-lib.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-interp-main.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-interp.exp Clean up "Reading symbols" output 2018-10-04 13:40:10 -06:00
break-main-file-remove-fail.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-main-file-remove-fail.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-on-linker-gcd-function.cc Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-on-linker-gcd-function.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-probes-solib.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-probes.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-probes.exp Fixed test case to compile & run on FreeBSD 2018-04-22 18:20:05 -04:00
break-unload-file.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break-unload-file.exp Clean up "Reading symbols" output 2018-10-04 13:40:10 -06:00
break.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
break.exp gdb.base/break.exp: fix last "info break" test failure on Ubuntu 16.04 2018-01-29 23:04:51 -05:00
break1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
breakpoint-in-ro-region.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
breakpoint-in-ro-region.exp Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
breakpoint-shadow.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
breakpoint-shadow.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
bt-selected-frame.c gdb: Restore selected frame in print_frame_local_vars 2018-05-24 18:01:31 +01:00
bt-selected-frame.exp gdb: Restore selected frame in print_frame_local_vars 2018-05-24 18:01:31 +01:00
c-linkage-name.c problem looking up some symbols when they have a linkage name 2018-03-27 09:57:16 -04:00
c-linkage-name.exp problem looking up some symbols when they have a linkage name 2018-03-27 09:57:16 -04:00
call-ar-st.c
call-ar-st.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
call-rt-st.c
call-rt-st.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
call-sc.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
call-sc.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
call-signal-resume.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
call-signals.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
call-strs.c
call-strs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
callexit.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
callexit.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
callfuncs.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
callfuncs.exp gdb/testsuite: Filter out some registers for riscv 2018-05-03 22:31:48 +01:00
catch-follow-exec.c [gdb/testsuite] Rewrite catch-follow-exec.exp 2018-10-16 22:40:41 +02:00
catch-follow-exec.exp [gdb/testsuite] Rewrite catch-follow-exec.exp using gdb_test 2018-10-24 13:18:04 +02:00
catch-fork-kill.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
catch-fork-kill.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
catch-fork-static.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
catch-gdb-caused-signals.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
catch-gdb-caused-signals.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
catch-load-so.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
catch-load.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
catch-load.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
catch-signal-fork.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
catch-signal-fork.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
catch-signal-siginfo-cond.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
catch-signal-siginfo-cond.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
catch-signal.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
catch-signal.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
catch-syscall.c Set unknown_syscall differently on arm linux 2016-06-29 14:51:41 +01:00
catch-syscall.exp Enable 'set print inferior-events' and improve detach/fork/kill/exit messages 2018-04-24 15:46:15 -04:00
charset-malloc.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
charset.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
charset.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
checkpoint-ns.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
checkpoint.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
checkpoint.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
chng-syms.c
chng-syms.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
code-expr.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
code_elim.exp RISC-V: Force variables to .data for code_elim. 2018-11-06 11:06:23 -08:00
code_elim1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
code_elim2.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
command-line-input.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
commands.exp Modify gdb.base/commands.exp to test multi breakpoints command clearing. 2018-08-28 22:40:59 +02:00
compare-sections.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
compare-sections.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
complete-empty.exp Skip GDB tab-completion tests if no readline. 2018-09-19 19:05:39 -07:00
completion.exp Show line numbers in output for "info var/func/type" 2018-04-13 19:26:05 +02:00
complex.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
complex.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
comprdebug.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
cond-eval-mode.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
cond-eval-mode.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
cond-expr.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
condbreak-call-false.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
condbreak-call-false.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
condbreak.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
consecutive-step-over.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
consecutive-step-over.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
consecutive.c
consecutive.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
constvars.c
constvars.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
continue-after-aborted-step-over.c Add testcase for GDB hang fixed by previous commit 2018-01-12 18:58:04 +00:00
continue-after-aborted-step-over.exp Add testcase for GDB hang fixed by previous commit 2018-01-12 18:58:04 +00:00
continue-all-already-running.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
continue-all-already-running.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
coredump-filter.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
coredump-filter.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
corefile.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
coremaker.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ctxobj-f.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ctxobj-m.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ctxobj-v.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ctxobj.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
cursal.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
cursal.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
cvexpr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
cvexpr.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
d10vovly.c
dbx.exp Clean up "Reading symbols" output 2018-10-04 13:40:10 -06:00
dcache-line-read-error.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dcache-line-read-error.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
debug-expr.c
debug-expr.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
default.exp Remove some text from --version output 2018-06-05 11:47:50 -06:00
define.exp Allow defining a user command inside a user command 2018-05-04 15:58:07 -06:00
del.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
del.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
detach.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dfp-exprs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dfp-test.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dfp-test.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
disabled-location.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
disabled-location.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
disasm-end-cu-1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
disasm-end-cu-2.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
disasm-end-cu.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
disasm-optim.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
disasm-optim.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
disasm-optim.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
disasm-optim.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
display.c
display.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dmsym.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dmsym.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dmsym_main.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
double-prompt-target-event-error.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
double-prompt-target-event-error.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dprintf-bp-same-addr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dprintf-bp-same-addr.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dprintf-detach.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dprintf-detach.exp Testsuite: fully migrate to use_gdb_stub convenience func 2018-03-23 10:38:23 +01:00
dprintf-next.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dprintf-next.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dprintf-non-stop.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dprintf-non-stop.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dprintf-pending.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dprintf-pending.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dprintf-pendshr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dprintf.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dprintf.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dso2dso-dso1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dso2dso-dso1.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dso2dso-dso2.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dso2dso-dso2.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dso2dso.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dso2dso.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dtrace-probe.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dtrace-probe.d Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dtrace-probe.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dump.c
dump.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dup-sect.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
dup-sect.S Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
duplicate-bp.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
duplicate-bp.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
echo.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
empty_exe.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ena-dis-br.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
endian.c arch-utils: Make the last endianness actually chosen sticky 2018-05-31 15:15:35 +01:00
endian.exp arch-utils: Make the last endianness actually chosen sticky 2018-05-31 15:15:35 +01:00
ending-run.c
ending-run.exp wrong line number in breakpoint location 2018-01-21 23:14:50 -05:00
enum_cond.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
enum_cond.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
enumval.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
enumval.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
environ.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
eu-strip-infcall.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
eu-strip-infcall.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
eval-avoid-side-effects.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
eval-skip.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
eval.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
examine-backward.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
examine-backward.exp gdb/testsuite: Allow for failure to read some memory addresses 2018-07-09 15:08:20 +01:00
exe-lock.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
exec-invalid-sysroot.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
execd-prog.c
execl-update-breakpoints.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
execl-update-breakpoints.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
execution-termios.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
execution-termios.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
exitsignal.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
expand-psymtabs.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
expand-psymtabs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
exprs.c
exprs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
fileio.c gdb.base/fileio.c: Fix several -Wmaybe-uninitialized warnings 2017-05-18 12:56:38 +01:00
fileio.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
filesym.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
filesym.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
find-unmapped.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
find-unmapped.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
find.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
find.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
finish-pretty.c [gdb/cli] Honour 'print pretty' when printing result of finish command 2018-06-14 15:30:47 +02:00
finish-pretty.exp [gdb/cli] Honour 'print pretty' when printing result of finish command 2018-06-14 15:30:47 +02:00
finish.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
fixsection.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
fixsection.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
fixsectshr.c
float.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
float.exp gdb: Initial baremetal riscv support 2018-03-06 09:59:09 +00:00
float128.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
float128.exp Improve gdb.base/float128.exp failure message 2018-06-20 16:24:16 +02:00
floatn.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
floatn.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
foll-exec-mode.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
foll-exec-mode.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
foll-exec.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
foll-exec.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
foll-fork.c
foll-fork.exp Enable 'set print inferior-events' and improve detach/fork/kill/exit messages 2018-04-24 15:46:15 -04:00
foll-vfork-exit.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
foll-vfork.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
foll-vfork.exp Enable 'set print inferior-events' and improve detach/fork/kill/exit messages 2018-04-24 15:46:15 -04:00
foo.c
fork-print-inferior-events.c Enable 'set print inferior-events' and improve detach/fork/kill/exit messages 2018-04-24 15:46:15 -04:00
fork-print-inferior-events.exp Enable 'set print inferior-events' and improve detach/fork/kill/exit messages 2018-04-24 15:46:15 -04:00
fork-running-state.c Avoid gdb.base/fork-running-state.exp lingering processes 2018-06-14 17:47:03 +01:00
fork-running-state.exp Avoid gdb.base/fork-running-state.exp lingering processes 2018-06-14 17:47:03 +01:00
fortran-sym-case.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
fortran-sym-case.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
frame-args.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
frame-args.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
frame-selection.c gdb: Change how frames are selected for 'frame' and 'info frame'. 2018-09-28 11:59:34 +01:00
frame-selection.exp gdb: Change how frames are selected for 'frame' and 'info frame'. 2018-09-28 11:59:34 +01:00
frameapply.c Add a test for 'frame apply' 2018-07-12 23:06:08 +02:00
frameapply.exp Add a test for 'frame apply' 2018-07-12 23:06:08 +02:00
freebpcmd.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
freebpcmd.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
fullname.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
fullname.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
fullpath-expand-func.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
fullpath-expand.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
fullpath-expand.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
func-ptr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
func-ptr.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
func-ptrs.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
func-ptrs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
funcargs.c gdb: Ensure compiler doesn't optimise variable out in test 2018-08-30 16:33:49 +01:00
funcargs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gcore-buffer-overflow.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gcore-buffer-overflow.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gcore-relro-lib.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gcore-relro-main.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gcore-relro-pie.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gcore-relro-pie.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gcore-relro.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gcore-tls-pie.c Fix debugging of stripped PIE executables with padded PT_TLS 2018-08-19 11:00:39 -04:00
gcore-tls-pie.exp Fix debugging of stripped PIE executables with padded PT_TLS 2018-08-19 11:00:39 -04:00
gcore.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gcore.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb-sigterm-2.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb-sigterm.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb-sigterm.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1056.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1090.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1090.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1250.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1250.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1555-main.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1555.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1555.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1821.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb1821.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb11530.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb11530.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb11531.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb11531.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdb_history
gdbhistsize-history.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdbindex-stabs-dwarf.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdbindex-stabs.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdbindex-stabs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdbinit-history.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gdbvars.c
gdbvars.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
global-var-nested-by-dso-solib1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
global-var-nested-by-dso-solib2.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
global-var-nested-by-dso.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
global-var-nested-by-dso.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gnu-debugdata.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gnu-debugdata.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gnu-ifunc-final.c Extend GNU ifunc testcases 2018-04-26 13:11:09 +01:00
gnu-ifunc-lib.c Extend GNU ifunc testcases 2018-04-26 13:11:09 +01:00
gnu-ifunc.c Extend GNU ifunc testcases 2018-04-26 13:11:09 +01:00
gnu-ifunc.exp Use standard_output_file in a couple more places 2018-10-06 22:48:17 -06:00
gnu_vector.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
gnu_vector.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
grbx.c
hashline1.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hashline2.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hashline3.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hbreak-in-shr-unsupported-shr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hbreak-in-shr-unsupported.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hbreak-in-shr-unsupported.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hbreak-unmapped.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hbreak-unmapped.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hbreak.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hbreak.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hbreak2.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
help.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
history-duplicates.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hook-stop.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
hook-stop.exp Fix new inferior events output 2018-04-25 17:28:25 +01:00
huge.c
huge.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ifelse.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
included.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
included.exp Show line numbers in output for "info var/func/type" 2018-04-13 19:26:05 +02:00
included.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
index-cache.c Add DWARF index cache 2018-08-07 18:14:20 -04:00
index-cache.exp Add DWARF index cache 2018-08-07 18:14:20 -04:00
infcall-exec.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
infcall-exec.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
infcall-exec2.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
infcall-input.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
infcall-input.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
infcall-nested-structs.c infcall-nested-structs: Test up to five fields 2018-08-29 11:43:53 +01:00
infcall-nested-structs.exp infcall-nested-structs: Test up to five fields 2018-08-29 11:43:53 +01:00
inferior-died.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
inferior-died.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
infnan.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
infnan.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
info-fun-solib.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
info-fun.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
info-fun.exp Adjust more test cases to changed output of info var/func/type 2018-04-16 20:58:14 +02:00
info-macros.c
info-macros.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
info-os.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
info-os.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
info-proc.exp Update string expected from "help info proc" on gdb.base/info-proc.exp 2018-10-06 11:23:02 -04:00
info-program.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
info-shared-solib1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
info-shared-solib2.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
info-shared.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
info-shared.exp info-shared.exp: Replace libs=-ldl with shlib_load 2018-04-24 10:14:27 -04:00
info-target.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
info_qt.c Add a test case for info args|functions|locals|variables [-q] [-t TYPEREGEXP] [NAMEREGEXP] 2018-10-27 13:54:12 +02:00
info_qt.exp Add a test case for info args|functions|locals|variables [-q] [-t TYPEREGEXP] [NAMEREGEXP] 2018-10-27 13:54:12 +02:00
infoline-reloc-main-from-zero.c Fix lost line info for symbol at addr zero 2018-06-27 20:12:49 +05:00
infoline-reloc-main-from-zero.exp Fix lost line info for symbol at addr zero 2018-06-27 20:12:49 +05:00
infoline.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
infoline.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
int-type.c
interact.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
interp.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
interp.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
interrupt-daemon.c Per-inferior target_terminal state, fix PR gdb/13211, more 2018-01-30 14:55:18 +00:00
interrupt-daemon.exp Per-inferior target_terminal state, fix PR gdb/13211, more 2018-01-30 14:55:18 +00:00
interrupt-noterm.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
interrupt-noterm.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
interrupt.c
interrupt.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jit-attach-pie.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jit-attach-pie.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jit-dlmain.c
jit-main.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jit-protocol.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jit-reader.exp Fix "info registers" regexes in gdb.base/jit-reader.exp 2018-06-22 13:40:47 -04:00
jit-simple-dl.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jit-simple-jit.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jit-simple.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jit-simple.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jit-so.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jit-solib.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jit.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jithost.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jithost.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jitreader.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
jump.c
jump.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
kill-after-signal.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
kill-after-signal.exp Fix new inferior events output 2018-04-25 17:28:25 +01:00
kill-detach-inferiors-cmd.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
kill-detach-inferiors-cmd.exp Clean up "Reading symbols" output 2018-10-04 13:40:10 -06:00
killed-outside.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
killed-outside.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
label.c
label.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
langs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
langs0.c
langs1.c
langs1.f Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
langs2.c
langs2.cxx
large-frame-1.c gdb/riscv: Improve non-dwarf stack unwinding 2018-09-26 14:08:39 +01:00
large-frame-2.c gdb/riscv: Improve non-dwarf stack unwinding 2018-09-26 14:08:39 +01:00
large-frame.exp gdb/riscv: Improve non-dwarf stack unwinding 2018-09-26 14:08:39 +01:00
large-frame.h gdb/riscv: Improve non-dwarf stack unwinding 2018-09-26 14:08:39 +01:00
ldbl_e308.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ldbl_e308.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
libsegfault.exp Fix regression: cannot start with LD_PRELOAD=libSegFault.so (PR gdb/18653#c7) 2018-01-05 18:26:18 +00:00
line-symtabs.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
line-symtabs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
line-symtabs.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
lineinc.c
lineinc.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
lineinc1.h
lineinc2.h
lineinc3.h
linespecs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
list-ambiguous.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
list-ambiguous0.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
list-ambiguous1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
list.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
list0.c
list0.h
list1.c
load-command.c Add test for load command 2018-02-26 15:57:37 -05:00
load-command.exp Add test for load command 2018-02-26 15:57:37 -05:00
logical.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
long-inferior-output.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
long-inferior-output.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
long_long.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
long_long.exp Use previous count when 'x' command is repeated 2018-05-04 12:22:37 -06:00
longest-types.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
longest-types.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
longjmp.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
longjmp.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
m32r.ld
m32rovly.c
macscp.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
macscp1.c
macscp2.h
macscp3.h
macscp4.h
maint.exp Add DWARF index cache 2018-08-07 18:14:20 -04:00
many-headers.c [gdb] Fix gdb crash when reading core file 2018-11-06 23:15:41 +01:00
many-headers.exp [gdb] Fix gdb crash when reading core file 2018-11-06 23:15:41 +01:00
max-value-size.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
max-value-size.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
memattr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
memattr.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
mips_pro.c
mips_pro.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
miscexprs.c
miscexprs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
morestack.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
morestack.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
moribund-step.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
multi-forks.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
multi-forks.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
multi-line-starts-subshell.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nested-addr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nested-addr.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nested-subp1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nested-subp1.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nested-subp2.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nested-subp2.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nested-subp3.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nested-subp3.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
new-ui-echo.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
new-ui-echo.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
new-ui-pending-input.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
new-ui-pending-input.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
new-ui.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
new-ui.exp Use GNU style for metasyntactic variables in gdb 2018-09-16 06:25:17 -06:00
nextoverexit.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nextoverexit.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nodebug.c Stop assuming no-debug-info variables have type int 2017-09-04 20:21:15 +01:00
nodebug.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nofield.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nofield.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
noreturn-finish.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
noreturn-finish.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
noreturn-return.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
noreturn-return.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
normal.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nostdlib.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
nostdlib.exp Testsuite: fully migrate to use_gdb_stub convenience func 2018-03-23 10:38:23 +01:00
offsets.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
offsets.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
opaque.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
opaque0.c
opaque1.c
osabi.exp Make "set osabi none" really work (PR 22980) 2018-04-07 13:23:28 -04:00
overlays.c
overlays.exp Remove a bunch of usages of gdb_suppress_tests in 'runto_main'. 2018-10-27 14:47:36 +02:00
ovlymgr.c
ovlymgr.h
page.exp Add "continue" response to pager 2018-06-05 11:02:52 -06:00
paginate-after-ctrl-c-running.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
paginate-after-ctrl-c-running.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
paginate-bg-execution.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
paginate-bg-execution.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
paginate-execution-startup.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
paginate-execution-startup.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
paginate-inferior-exit.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
paginate-inferior-exit.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
pc-fp.c
pc-fp.exp Make tests expect [ \t]+ pattern instead of \t for "info reg" command 2018-01-19 09:05:51 +03:00
pending.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
pending.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
pendshr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
permissions.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
pi.txt
pie-execl.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
pie-execl.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
pie-fork.c Add test for following fork on position-independent executables 2018-04-11 14:55:40 -04:00
pie-fork.exp Add test for following fork on position-independent executables 2018-04-11 14:55:40 -04:00
pointers.c
pointers.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
pr10179-a.c
pr10179-b.c
pr10179.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
pr11022.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
pr11022.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
prelink-lib.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
prelink.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
prelink.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
print-file-var-lib1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
print-file-var-lib2.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
print-file-var-main.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
print-file-var.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
print-symbol-loading-lib.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
print-symbol-loading-main.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
print-symbol-loading.exp Clean up "Reading symbols" output 2018-10-04 13:40:10 -06:00
printcmds.c
printcmds.exp Special case NULL when using printf's %s format 2018-03-14 09:44:34 -06:00
prologue-include.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
prologue-include.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
prologue-include.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
prologue.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
prologue.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
psymtab.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
psymtab1.c
psymtab2.c
ptr-typedef.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ptr-typedef.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ptype-offsets.cc Fix PR c++/23373: GDB hangs when printing a struct with a static member of itself 2018-07-11 14:53:44 -04:00
ptype-offsets.exp Fix PR c++/23373: GDB hangs when printing a struct with a static member of itself 2018-07-11 14:53:44 -04:00
ptype.c
ptype.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ptype1.c
quit-live.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
quit-live.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
quit.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
radix.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
random-signal.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
random-signal.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
randomize.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
randomize.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
range-stepping.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
range-stepping.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
readline-ask.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
readline-ask.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
readline-ask.inputrc Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
readline.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
readnever.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
readnever.exp [gdb/testsuite] Fix capitalized test names 2018-10-18 15:06:38 +02:00
realname-expand-real.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
realname-expand.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
realname-expand.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
recpar.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
recpar.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
recurse.c
recurse.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
reggroups.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
reggroups.exp Add '_' in the match pattern. 2018-09-20 16:46:00 +01:00
relational.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
relativedebug.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
relativedebug.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
relocate.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
relocate.exp Clean up "Reading symbols" output 2018-10-04 13:40:10 -06:00
remote.c
remote.exp Fix gdb.base/remote.exp with native-extended-gdbserver board 2018-05-22 23:26:46 +01:00
remotetimeout.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
reread-readsym.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
reread-readsym.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
reread.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
reread1.c
reread2.c
restore.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
restore.exp Fix PR cli/23785: Check if file exists when invoking "restore FILE binary" 2018-10-18 17:39:09 -04:00
return-nodebug.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
return-nodebug.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
return-nodebug1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
return.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
return.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
return2.c
return2.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
run-after-attach.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
run-after-attach.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
run.c
save-bp.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
save-bp.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
savedregs.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
savedregs.exp Remove a bunch of usages of gdb_suppress_tests in 'runto_main'. 2018-10-27 14:47:36 +02:00
scope.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
scope0.c
scope1.c
sect-cmd.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
segv.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sep-proc.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sep.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sepdebug.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sepdebug.exp Clean up "Reading symbols" output 2018-10-04 13:40:10 -06:00
sepdebug2.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sepsymtab.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sepsymtab.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
server-del-break.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
server-del-break.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
set-cwd.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
set-cwd.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
set-inferior-tty.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
set-inferior-tty.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
set-lang-auto.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
set-noassign.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
setshow.c
setshow.exp Remove a bunch of usages of gdb_suppress_tests in 'runto_main'. 2018-10-27 14:47:36 +02:00
setvar.c
setvar.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
share-env-with-gdbserver.c gdb/testsuite: Ensure test links in malloc and free 2018-07-06 14:31:37 +01:00
share-env-with-gdbserver.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
shell.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
shlib-call.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
shmain.c
shr1.c
shr2.c
shreloc.c
shreloc.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
shreloc1.c
shreloc2.c
sigall.c
sigall.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sigaltstack.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sigaltstack.exp Remove a bunch of usages of gdb_suppress_tests in 'runto_main'. 2018-10-27 14:47:36 +02:00
sigbpt.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sigbpt.exp Remove a bunch of usages of gdb_suppress_tests in 'runto_main'. 2018-10-27 14:47:36 +02:00
sigchld.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sigchld.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
siginfo-addr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
siginfo-addr.exp Remove a bunch of usages of gdb_suppress_tests in 'runto_main'. 2018-10-27 14:47:36 +02:00
siginfo-infcall.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
siginfo-infcall.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
siginfo-obj.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
siginfo-obj.exp Remove a bunch of usages of gdb_suppress_tests in 'runto_main'. 2018-10-27 14:47:36 +02:00
siginfo-thread.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
siginfo-thread.exp Remove a bunch of usages of gdb_suppress_tests in 'runto_main'. 2018-10-27 14:47:36 +02:00
siginfo.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
siginfo.exp Remove a bunch of usages of gdb_suppress_tests in 'runto_main'. 2018-10-27 14:47:36 +02:00
signals-state-child.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
signals-state-child.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
signals.c
signals.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
signest.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
signest.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
signull.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
signull.exp Remove a bunch of usages of gdb_suppress_tests in 'runto_main'. 2018-10-27 14:47:36 +02:00
sigrepeat.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sigrepeat.exp Remove a bunch of usages of gdb_suppress_tests in 'runto_main'. 2018-10-27 14:47:36 +02:00
sigstep.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sigstep.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sizeof.c Run gdb.base/sizeof.exp with board having gdb,noinferiorio 2015-12-03 17:12:41 +00:00
sizeof.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
skip-solib-lib.c
skip-solib-main.c
skip-solib.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
skip.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
skip.exp Add helper functions parse_flags and parse_flags_qcs 2018-07-12 22:50:26 +02:00
skip1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
so-disc-shr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
so-impl-ld.c
so-impl-ld.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-corrupted.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-disc.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-disc.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-display-lib.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-display-main.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-display.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-nodir.exp Testsuite: fully migrate to use_gdb_stub convenience func 2018-03-23 10:38:23 +01:00
solib-overlap-lib.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-overlap-main.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-overlap.exp Enable 'set print inferior-events' and improve detach/fork/kill/exit messages 2018-04-24 15:46:15 -04:00
solib-search-lib1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-search-lib2.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-search.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-search.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-search.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-symbol-lib.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-symbol-main.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-symbol.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-vanish-lib1.c Fix gdb segv when objfile can't be opened 2018-01-17 12:54:59 -05:00
solib-vanish-lib2.c Fix gdb segv when objfile can't be opened 2018-01-17 12:54:59 -05:00
solib-vanish-main.c Fix gdb segv when objfile can't be opened 2018-01-17 12:54:59 -05:00
solib-vanish.exp Fix pathname regexp in gdb.base/solib-vanish.exp. 2018-10-11 16:51:26 -07:00
solib-weak.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib-weak.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
solib1.c Remove HP-UX references fom testsuite 2015-12-21 12:51:54 -05:00
source-dir.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
source-error.gdb Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
source-execution.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
source-execution.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
source-execution.gdb Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
source-nofile.gdb Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
source-test.gdb Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
source.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
spu.ld
ss.h
sss-bp-on-user-bp-2.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sss-bp-on-user-bp-2.exp Convert struct target_ops to C++ 2018-05-03 00:48:36 +01:00
sss-bp-on-user-bp.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sss-bp-on-user-bp.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
stack-checking.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
stack-checking.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
stale-infcall.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
stale-infcall.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
stap-probe.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
stap-probe.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
start.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
start.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
starti.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
starti.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
startup-with-shell.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
startup-with-shell.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
statistics.exp Testsuite: fully migrate to use_gdb_stub convenience func 2018-03-23 10:38:23 +01:00
step-break.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-break.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-bt.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-bt.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-indirect-call-thunk.c infrun: step through indirect branch thunks 2018-04-13 10:44:47 +02:00
step-indirect-call-thunk.exp infrun: step through indirect branch thunks 2018-04-13 10:44:47 +02:00
step-line.c Unbreak spurious fails in gdb.base/step-line.exp 2018-01-03 07:57:47 +04:00
step-line.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-line.inp Unbreak spurious fails in gdb.base/step-line.exp 2018-01-03 07:57:47 +04:00
step-over-clone.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-over-exit.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-over-exit.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-over-fork.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-over-no-symbols.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-over-syscall.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-over-vfork.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-resume-infcall.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-resume-infcall.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-sw-breakpoint-adjust-pc.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-sw-breakpoint-adjust-pc.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-symless.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-symless.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
step-test.c
step-test.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
store.c
store.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
structs.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
structs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
structs2.c
structs2.exp Remove a bunch of usages of gdb_suppress_tests in 'runto_main'. 2018-10-27 14:47:36 +02:00
structs3.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
structs3.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
subst.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sum.c
sym-file-lib.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sym-file-loader.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sym-file-loader.h Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sym-file-main.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
sym-file.exp Clean up "Reading symbols" output 2018-10-04 13:40:10 -06:00
symbol-alias.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
symbol-alias.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
symbol-alias2.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
symbol-without-target_section.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
symbol-without-target_section.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
symtab-search-order-1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
symtab-search-order-shlib-1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
symtab-search-order.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
symtab-search-order.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
term.c Fix restoring of inferior terminal settings 2018-08-22 11:09:45 -04:00
term.exp Fix restoring of inferior terminal settings 2018-08-22 11:09:45 -04:00
testenv.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
testenv.exp Testsuite: fully migrate to use_gdb_stub convenience func 2018-03-23 10:38:23 +01:00
trace-commands.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
twice.c
twice.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
type-opaque-lib.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
type-opaque-main.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
type-opaque.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
ui-redirect.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
unload.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
unload.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
unloadshr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
unloadshr2.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
until-nodebug.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
until.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
unwindonsignal.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
unwindonsignal.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
utf8-identifiers.c Support UTF-8 identifiers in C/C++ expressions (PR gdb/22973) 2018-05-22 17:35:38 +01:00
utf8-identifiers.exp Skip GDB tab-completion tests if no readline. 2018-09-19 19:05:39 -07:00
valgrind-bt.c [gdb/testsuite] Move valgrind-db-attach.{c,exp} to valgrind-bt.{c,exp} 2018-10-25 16:20:05 +02:00
valgrind-bt.exp [gdb/testsuite] Factor out lib/valgrind.exp 2018-10-31 18:26:40 +01:00
valgrind-disp-step.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
valgrind-disp-step.exp [gdb/testsuite] Factor out lib/valgrind.exp 2018-10-31 18:26:40 +01:00
valgrind-infcall.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
valgrind-infcall.exp [gdb/testsuite] Factor out lib/valgrind.exp 2018-10-31 18:26:40 +01:00
value-double-free.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
value-double-free.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
varargs.c
varargs.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
vdso-warning.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
vdso-warning.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
vforked-prog.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
vla-datatypes.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
vla-datatypes.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
vla-optimized-out.c [gdb/testsuite] Add comment in gdb.base/vla-optimized-out.c 2018-07-26 10:22:22 +02:00
vla-optimized-out.exp Testsuite: vla-optimized-out.exp is too pessimistic 2018-10-19 11:21:12 +01:00
vla-ptr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
vla-ptr.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
vla-sideeffect.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
vla-sideeffect.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
vla-stub-define.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
vla-stub.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
vla-stub.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
volatile.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watch-bitfields.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watch-bitfields.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watch-cond-infcall.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watch-cond-infcall.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watch-cond.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watch-cond.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watch-non-mem.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watch-non-mem.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watch-read.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watch-read.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watch-vfork.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watch-vfork.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watch_thread_num.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watch_thread_num.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-cond-gone-stripped.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-cond-gone.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-cond-gone.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-delete.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-delete.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-hw-attach.c Fixed top frame assumption in watchpoint-hw-attach 2018-06-28 08:59:59 +01:00
watchpoint-hw-attach.exp Remove unstable test output 2018-06-29 17:34:58 +01:00
watchpoint-hw-hit-once.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-hw-hit-once.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-hw.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-hw.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-reuse-slot.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-reuse-slot.exp gdb/testsuite: Run test with software and hardware watchpoints 2018-07-10 14:47:38 +01:00
watchpoint-solib-shr.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-solib.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-solib.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-stops-at-right-insn.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-stops-at-right-insn.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoint-unaligned.c aarch64: PR 19806: watchpoints: false negatives + PR 20207 contiguous ones 2018-05-04 22:26:46 +02:00
watchpoint-unaligned.exp watchpoint-unaligned.exp: Use skip_hw_watchpoint_tests 2018-05-08 14:26:19 +02:00
watchpoint.c
watchpoint.exp gdb/testsuite: Make test names unique in gdb.base/watchpoint.exp 2018-09-07 14:06:53 +01:00
watchpoints.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
watchpoints.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
wchar.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
wchar.exp Special case NULL when using printf's %s format 2018-03-14 09:44:34 -06:00
weaklib1.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
weaklib2.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
whatis-exp.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
whatis-ptype-typedefs.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
whatis-ptype-typedefs.exp gdb/testsuite: Don't attempt tests if they fail to compile 2018-01-12 22:38:30 +00:00
whatis.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
whatis.exp Fix segfault with 'set print object on' + 'whatis <struct>' & co 2018-01-22 17:33:13 +00:00
write_mem.c Fix PR gdb/20948: --write option to GDB causes segmentation fault 2018-09-24 06:20:17 -06:00
write_mem.exp Fix PR gdb/20948: --write option to GDB causes segmentation fault 2018-09-24 06:20:17 -06:00
wrong_frame_bt_full-main.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
wrong_frame_bt_full-opaque.c Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00
wrong_frame_bt_full.exp Update copyright year range in all GDB files 2018-01-02 07:38:06 +04:00