binutils-gdb/gdb/testsuite/gdb.base
Yao Qi 46a62268b8 Catch exceptions thrown from gdbarch_skip_prologue
PR 21555 is caused by the exception during the prologue analysis when re-set
a breakpoint.

(gdb) bt
 #0  memory_error_message (err=TARGET_XFER_E_IO, gdbarch=0x153db50, memaddr=93824992233232) at ../../binutils-gdb/gdb/corefile.c:192
 #1  0x00000000005718ed in memory_error (err=TARGET_XFER_E_IO, memaddr=memaddr@entry=93824992233232) at ../../binutils-gdb/gdb/corefile.c:220
 #2  0x00000000005719d6 in read_memory_object (object=object@entry=TARGET_OBJECT_CODE_MEMORY, memaddr=93824992233232, memaddr@entry=1, myaddr=myaddr@entry=0x7fffffffd0a0 "P\333S\001", len=len@entry=1) at ../../binutils-gdb/gdb/corefile.c:259
 #3  0x0000000000571c6e in read_code (len=1, myaddr=0x7fffffffd0a0 "P\333S\001", memaddr=<optimized out>) at ../../binutils-gdb/gdb/corefile.c:287
 #4  read_code_unsigned_integer (memaddr=memaddr@entry=93824992233232, len=len@entry=1, byte_order=byte_order@entry=BFD_ENDIAN_LITTLE)                          at ../../binutils-gdb/gdb/corefile.c:362
 #5  0x000000000041d4a0 in amd64_analyze_prologue (gdbarch=gdbarch@entry=0x153db50, pc=pc@entry=93824992233232, current_pc=current_pc@entry=18446744073709551615, cache=cache@entry=0x7fffffffd1e0) at ../../binutils-gdb/gdb/amd64-tdep.c:2310
 #6  0x000000000041e404 in amd64_skip_prologue (gdbarch=0x153db50, start_pc=93824992233232) at ../../binutils-gdb/gdb/amd64-tdep.c:2459
 #7  0x000000000067bfb0 in skip_prologue_sal (sal=sal@entry=0x7fffffffd4e0) at ../../binutils-gdb/gdb/symtab.c:3628
 #8  0x000000000067c4d8 in find_function_start_sal (sym=sym@entry=0x1549960, funfirstline=1) at ../../binutils-gdb/gdb/symtab.c:3501
 #9  0x000000000060999d in symbol_to_sal (result=result@entry=0x7fffffffd5f0, funfirstline=<optimized out>, sym=sym@entry=0x1549960) at ../../binutils-gdb/gdb/linespec.c:3860
....
 #16 0x000000000054b733 in location_to_sals (b=b@entry=0x15792d0, location=0x157c230, search_pspace=search_pspace@entry=0x1148120, found=found@entry=0x7fffffffdc64) at ../../binutils-gdb/gdb/breakpoint.c:14211
 #17 0x000000000054c1f5 in breakpoint_re_set_default (b=0x15792d0) at ../../binutils-gdb/gdb/breakpoint.c:14301
 #18 0x00000000005412a9 in breakpoint_re_set_one (bint=bint@entry=0x15792d0) at ../../binutils-gdb/gdb/breakpoint.c:14412

This problem can be fixed by

 - either each prologue analyzer doesn't throw exception,
 - or catch the exception thrown from gdbarch_skip_prologue,

I choose the latter because the former needs to fix *every* prologue
analyzer to not throw exception.

This error can be reproduced by changing reread.exp.  The test reread.exp
has already test that breakpoint can be reset correctly after the
executable is re-read.  This patch extends this test by compiling test c
file with and without -fPIE.

(gdb) run ^M
The program being debugged has been started already.^M
Start it from the beginning? (y or n) y^M
x86_64/gdb/testsuite/outputs/gdb.base/reread/reread' has changed; re-reading symbols.
Error in re-setting breakpoint 1: Cannot access memory at address 0x555555554790^M
Error in re-setting breakpoint 2: Cannot access memory at address 0x555555554790^M
Starting program: /scratch/yao/gdb/build-git/x86_64/gdb/testsuite/outputs/gdb.base/reread/reread ^M
This is foo^M
[Inferior 1 (process 27720) exited normally]^M
(gdb) FAIL: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : run to foo() second time (the program exited)

This patch doesn't re-indent the code, to keep the patch simple.

gdb:

2017-07-25  Yao Qi  <yao.qi@linaro.org>

	PR gdb/21555
	* arch-utils.c (gdbarch_skip_prologue_noexcept): New function.
	* arch-utils.h (gdbarch_skip_prologue_noexcept): Declare.
	* infrun.c: Include arch-utils.h
	(handle_step_into_function): Call gdbarch_skip_prologue_noexcept.
	(handle_step_into_function_backward): Likewise.
	* symtab.c (skip_prologue_sal): Likewise.

gdb/testsuite:

2017-07-25  Yao Qi  <yao.qi@linaro.org>

	PR gdb/21555
	* gdb.base/reread.exp: Wrap the whole test with two kinds of
	compilation flags, with -fPIE and without -fPIE.
2017-07-25 11:38:50 +01:00
..
comp-dir/subdir
gdbinit-history Fix PR gdb/17820 2015-05-13 09:26:54 -04:00
a2-run.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
advance.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
advance.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
alias.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-0.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-1.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-3.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-4.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-5.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-6.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures-7.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-architectures.exp.in Don't throw exception in dis_asm_memory_error 2017-01-26 14:29:20 +00:00
all-bin.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
all-types.c
annota-input-while-running.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
annota-input-while-running.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
annota1.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
annota1.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
annota3.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
annota3.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
anon.c
anon.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
args.c
args.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
argv0-symlink.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
argv0-symlink.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
arithmet.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
arrayidx.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
arrayidx.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
asmlabel.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
asmlabel.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
assign.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
async-shell.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
async-shell.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
async.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
async.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach-pie-misread.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach-pie-misread.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach-pie-noexec.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach-pie-noexec.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach-twice.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach-twice.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach-wait-input.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach-wait-input.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach.c testsuite: Fix runaway attach processes 2014-09-12 13:39:04 +02:00
attach.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
attach2.c
auto-connect-native-target.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
auto-connect-native-target.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
auto-load-script update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
auto-load.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
auto-load.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
auxv.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
auxv.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
average.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
bad-file.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bang.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bar.c
batch-preserve-term-settings.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
batch-preserve-term-settings.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
baz.c
bfp-test.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bfp-test.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bg-execution-repeat.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bg-execution-repeat.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bigcore.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bigcore.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bitfields.c
bitfields.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bitfields2.c
bitfields2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bitops.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bp-cmds-execution-x-script.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bp-cmds-execution-x-script.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bp-cmds-execution-x-script.gdb update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bp-permanent.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
bp-permanent.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
branch-to-self.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
branch-to-self.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-always.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-always.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-caller-line.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-caller-line.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-entry.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-fun-addr.exp gdb: Fix a few unstable test names 2017-03-08 12:46:44 +00:00
break-fun-addr1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-fun-addr2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-idempotent.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-idempotent.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-inline.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-inline.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-interp-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-interp-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-interp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-main-file-remove-fail.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-main-file-remove-fail.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-on-linker-gcd-function.cc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-on-linker-gcd-function.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-probes-solib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-probes.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-probes.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-unload-file.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break-unload-file.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
break1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
breakpoint-in-ro-region.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
breakpoint-in-ro-region.exp Harden tests that deal with memory regions 2017-01-26 13:51:09 -06:00
breakpoint-shadow.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
breakpoint-shadow.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-ar-st.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
call-ar-st.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-rt-st.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
call-rt-st.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-sc.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-sc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-signal-resume.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-signals.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
call-strs.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
call-strs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
callexit.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
callexit.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
callfuncs.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
callfuncs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-fork-kill.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-fork-kill.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-fork-static.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-gdb-caused-signals.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-gdb-caused-signals.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-load-so.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-load.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-load.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-signal-fork.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-signal-fork.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-signal-siginfo-cond.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-signal-siginfo-cond.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-signal.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-signal.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
catch-syscall.c Set unknown_syscall differently on arm linux 2016-06-29 14:51:41 +01:00
catch-syscall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
charset-malloc.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
charset.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
charset.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
checkpoint-ns.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
checkpoint.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
checkpoint.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
chng-syms.c
chng-syms.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
code-expr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
code_elim.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
code_elim1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
code_elim2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
command-line-input.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
commands.exp testsuite: Disable backslash_in_multi_line_command_test for old DejaGnus 2017-03-13 18:02:08 -04:00
compare-sections.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
compare-sections.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
completion.exp A smarter linespec completer 2017-07-17 20:29:37 +01:00
complex.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
complex.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
comprdebug.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cond-eval-mode.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cond-eval-mode.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cond-expr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
condbreak-call-false.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
condbreak-call-false.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
condbreak.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
consecutive-step-over.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
consecutive-step-over.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
consecutive.c
consecutive.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
constvars.c Handle volatile array types in dwarf2read.c. 2014-07-01 22:11:53 +02:00
constvars.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
continue-all-already-running.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
continue-all-already-running.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
coredump-filter.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
coredump-filter.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
corefile.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
coremaker.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ctxobj-f.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ctxobj-m.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ctxobj-v.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ctxobj.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cursal.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cursal.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cvexpr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
cvexpr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
d10vovly.c
dbx.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dcache-line-read-error.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dcache-line-read-error.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
debug-expr.c
debug-expr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
default.exp Make language_def O(1) 2017-07-20 18:28:01 +01:00
define.exp Command abbreviation in define 2017-02-08 19:03:25 +01:00
del.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
del.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
detach.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dfp-exprs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dfp-test.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dfp-test.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disabled-location.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disabled-location.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disasm-end-cu-1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disasm-end-cu-2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disasm-end-cu.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disasm-optim.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disasm-optim.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disasm-optim.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
disasm-optim.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
display.c
display.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dmsym.c Make gdb.base/dmsym.exp independent of "set language ada" 2017-07-20 17:52:03 +01:00
dmsym.exp Make gdb.base/dmsym.exp independent of "set language ada" 2017-07-20 17:52:03 +01:00
dmsym_main.c Make gdb.base/dmsym.exp independent of "set language ada" 2017-07-20 17:52:03 +01:00
double-prompt-target-event-error.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
double-prompt-target-event-error.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-bp-same-addr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-bp-same-addr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-detach.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-detach.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-next.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-next.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-non-stop.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-non-stop.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-pending.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-pending.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf-pendshr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dprintf.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dso2dso-dso1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dso2dso-dso1.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dso2dso-dso2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dso2dso-dso2.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dso2dso.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dso2dso.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dtrace-probe.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dtrace-probe.d update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dtrace-probe.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dump.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
dump.exp gdb/testsuite: Add "get_endianness" convenience proc 2017-06-13 15:20:26 +02:00
dup-sect.S update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dup-sect.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
duplicate-bp.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
duplicate-bp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
echo.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
empty_exe.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ena-dis-br.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ending-run.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
ending-run.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
enum_cond.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
enum_cond.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
enumval.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
enumval.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
environ.exp Make environ.exp run on all platforms (and create info-program.exp) 2017-04-28 20:29:20 -04:00
eu-strip-infcall.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
eu-strip-infcall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
eval-avoid-side-effects.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
eval-skip.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
eval.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
examine-backward.c Fix spurious FAILs with examine-backward.exp 2017-03-20 18:55:39 +01:00
examine-backward.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
exe-lock.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
exec-invalid-sysroot.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
execd-prog.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
execl-update-breakpoints.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
execl-update-breakpoints.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
execution-termios.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
execution-termios.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
exitsignal.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
expand-psymtabs.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
expand-psymtabs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
exprs.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
exprs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fileio.c gdb.base/fileio.c: Fix several -Wmaybe-uninitialized warnings 2017-05-18 12:56:38 +01:00
fileio.exp gdb.base/fileio.c: Fix several -Wreturn-type warnings 2017-05-18 12:56:16 +01:00
filesym.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
filesym.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
find-unmapped.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
find-unmapped.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
find.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
find.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
finish.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fixsection.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fixsection.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fixsectshr.c
float.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
float.exp Expect prompt after no FPU warning 2017-05-18 16:31:40 +01:00
float128.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
float128.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
floatn.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
floatn.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-exec-mode.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-exec-mode.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-exec.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-exec.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-fork.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
foll-fork.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-vfork-exit.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-vfork.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foll-vfork.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
foo.c
fork-running-state.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fork-running-state.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fortran-sym-case.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fortran-sym-case.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
frame-args.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
frame-args.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
freebpcmd.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
freebpcmd.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fullname.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fullname.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fullpath-expand-func.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fullpath-expand.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
fullpath-expand.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
func-ptr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
func-ptr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
func-ptrs.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
func-ptrs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
funcargs.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
funcargs.exp gdb/testsuite: Add "get_endianness" convenience proc 2017-06-13 15:20:26 +02:00
gcore-buffer-overflow.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore-buffer-overflow.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore-relro-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore-relro-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore-relro-pie.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore-relro-pie.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore-relro.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gcore.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb-sigterm-2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb-sigterm.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb-sigterm.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1056.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1090.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1090.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1250.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1250.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1555-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1555.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1555.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1821.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb1821.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb11530.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb11530.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb11531.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb11531.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdb_history
gdbhistsize-history.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdbindex-stabs-dwarf.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdbindex-stabs.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdbindex-stabs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdbinit-history.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gdbvars.c
gdbvars.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
global-var-nested-by-dso-solib1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
global-var-nested-by-dso-solib2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
global-var-nested-by-dso.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
global-var-nested-by-dso.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gnu-debugdata.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gnu-debugdata.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gnu-ifunc-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gnu-ifunc.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gnu-ifunc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gnu_vector.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
gnu_vector.exp gdb/testsuite: Add "get_endianness" convenience proc 2017-06-13 15:20:26 +02:00
grbx.c
hashline1.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hashline2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hashline3.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak-in-shr-unsupported-shr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak-in-shr-unsupported.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak-in-shr-unsupported.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak-unmapped.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak-unmapped.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hbreak2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
help.exp PR gdb/21122: Fix documentation mistakes for breakpoint commands 2017-02-10 13:38:54 -03:00
history-duplicates.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hook-stop.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
hook-stop.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
huge.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
huge.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ifelse.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
included.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
included.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
included.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infcall-exec.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infcall-exec.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infcall-exec2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infcall-input.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infcall-input.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
inferior-died.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
inferior-died.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infnan.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infnan.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-fun-solib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-fun.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-fun.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-macros.c
info-macros.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-os.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-os.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-proc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-program.exp Make environ.exp run on all platforms (and create info-program.exp) 2017-04-28 20:29:20 -04:00
info-shared-solib1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-shared-solib2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-shared.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-shared.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
info-target.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infoline.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
infoline.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
int-type.c
interact.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
interp.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
interp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
interrupt-noterm.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
interrupt-noterm.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
interrupt.c Add "../lib/unbuffer_output.c" and use it in gdb.base/interrupt.c 2015-02-27 13:54:22 +00:00
interrupt.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-attach-pie.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-attach-pie.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-dlmain.c
jit-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-protocol.h Add a test case for the jit-reader interface 2016-06-17 19:24:08 +01:00
jit-reader.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-simple-dl.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-simple-jit.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-simple.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-simple.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-so.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit-solib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jit.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jithost.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jithost.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jitreader.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
jump.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
jump.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
kill-after-signal.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
kill-after-signal.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
kill-detach-inferiors-cmd.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
kill-detach-inferiors-cmd.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
killed-outside.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
killed-outside.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
label.c
label.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
langs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
langs0.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
langs1.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
langs1.f update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
langs2.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
langs2.cxx
ldbl_e308.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ldbl_e308.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
line-symtabs.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
line-symtabs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
line-symtabs.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
lineinc.c
lineinc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
lineinc1.h
lineinc2.h
lineinc3.h
linespecs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
list.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
list0.c
list0.h Drop non-prototype C function header variants: 'list' test case 2014-11-13 10:20:43 +01:00
list1.c Drop non-prototype C function header variants: 'list' test case 2014-11-13 10:20:43 +01:00
logical.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
long_long.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
long_long.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
longest-types.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
longest-types.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
longjmp.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
longjmp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
m32r.ld
m32rovly.c
macscp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
macscp1.c
macscp2.h
macscp3.h
macscp4.h
maint.exp PR gdb/21164: maint print {symbols,msymbols,psymbols} without args crash 2017-02-15 19:54:10 -05:00
max-value-size.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
max-value-size.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
memattr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
memattr.exp Harden tests that deal with memory regions 2017-01-26 13:51:09 -06:00
mips_pro.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
mips_pro.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
miscexprs.c
miscexprs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
morestack.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
morestack.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
moribund-step.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
multi-forks.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
multi-forks.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
multi-line-starts-subshell.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-addr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-addr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-subp1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-subp1.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-subp2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-subp2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-subp3.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nested-subp3.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
new-ui-echo.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
new-ui-echo.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
new-ui-pending-input.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
new-ui-pending-input.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
new-ui.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
new-ui.exp Do not send queries on secondary UIs 2017-02-10 16:29:50 -05:00
nextoverexit.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nextoverexit.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nodebug.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
nodebug.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nofield.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nofield.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
noreturn-finish.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
noreturn-finish.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
noreturn-return.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
noreturn-return.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
normal.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nostdlib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
nostdlib.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
offsets.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
offsets.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
opaque.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
opaque0.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
opaque1.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
overlays.c
overlays.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ovlymgr.c
ovlymgr.h
page.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-after-ctrl-c-running.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-after-ctrl-c-running.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-bg-execution.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-bg-execution.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-execution-startup.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-execution-startup.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-inferior-exit.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
paginate-inferior-exit.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pc-fp.c
pc-fp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pending.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pending.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pendshr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
permissions.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pi.txt
pie-execl.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pie-execl.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pointers.c
pointers.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr10179-a.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
pr10179-b.c
pr10179.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr11022.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
pr11022.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
prelink-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
prelink.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
prelink.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
print-file-var-lib1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
print-file-var-lib2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
print-file-var-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
print-file-var.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
print-symbol-loading-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
print-symbol-loading-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
print-symbol-loading.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
printcmds.c
printcmds.exp Expression completer should not match explicit location options 2017-06-29 15:53:48 +01:00
prologue-include.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
prologue-include.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
prologue-include.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
prologue.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
prologue.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
psymtab.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
psymtab1.c
psymtab2.c
ptr-typedef.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ptr-typedef.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ptype.c
ptype.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ptype1.c
quit.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
radix.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
random-signal.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
random-signal.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
randomize.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
randomize.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
range-stepping.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
range-stepping.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
readline-ask.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
readline-ask.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
readline-ask.inputrc update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
readline.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
realname-expand-real.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
realname-expand.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
realname-expand.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
recpar.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
recpar.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
recurse.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
recurse.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
relational.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
relativedebug.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
relativedebug.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
relocate.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
relocate.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
remote.c
remote.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
remotetimeout.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
reread-readsym.c Fix PR 21337: segfault when re-reading symbols. 2017-06-28 02:54:22 +01:00
reread-readsym.exp Fix PR 21337: segfault when re-reading symbols. 2017-06-28 02:54:22 +01:00
reread.exp Catch exceptions thrown from gdbarch_skip_prologue 2017-07-25 11:38:50 +01:00
reread1.c
reread2.c
restore.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
restore.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
return-nodebug.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
return-nodebug.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
return-nodebug1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
return.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
return.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
return2.c
return2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
run-after-attach.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
run-after-attach.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
run.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
save-bp.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
save-bp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
savedregs.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
savedregs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
scope.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
scope0.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
scope1.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
sect-cmd.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
segv.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sep-proc.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sep.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sep.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sepdebug.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sepdebug.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sepdebug2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sepsymtab.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sepsymtab.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
set-inferior-tty.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
set-inferior-tty.exp Add alias command to cmd_list_element 2017-05-17 14:22:35 +01:00
set-lang-auto.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
set-noassign.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
setshow.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
setshow.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
setvar.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
setvar.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
shell.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
shlib-call.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
shmain.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
shr1.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
shr2.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
shreloc.c
shreloc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
shreloc1.c
shreloc2.c
sigall.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
sigall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigaltstack.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigaltstack.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigbpt.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigbpt.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigchld.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigchld.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-addr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-addr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-infcall.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-infcall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-obj.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-obj.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-thread.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo-thread.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
siginfo.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
signals-state-child.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
signals-state-child.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
signals.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
signals.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
signest.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
signest.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
signull.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
signull.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigrepeat.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigrepeat.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigstep.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sigstep.exp update copyright year range in GDB files 2017-01-01 10:52:34 +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 GDB files 2017-01-01 10:52:34 +04:00
skip-solib-lib.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
skip-solib-main.c
skip-solib.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
skip.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
skip.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
skip1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
so-disc-shr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
so-impl-ld.c
so-impl-ld.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-corrupted.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-disc.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-disc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-display-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-display-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-display.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-nodir.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-overlap-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-overlap-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-overlap.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-search-lib1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-search-lib2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-search.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-search.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-search.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-symbol-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-symbol-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-symbol.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-weak.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
solib-weak.exp update copyright year range in GDB files 2017-01-01 10:52:34 +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 GDB files 2017-01-01 10:52:34 +04:00
source-error.gdb update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
source-execution.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
source-execution.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
source-execution.gdb update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
source-nofile.gdb update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
source-test.gdb update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
source.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
spu.ld
ss.h
sss-bp-on-user-bp-2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sss-bp-on-user-bp-2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sss-bp-on-user-bp.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sss-bp-on-user-bp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
stack-checking.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
stack-checking.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
stale-infcall.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
stale-infcall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
stap-probe.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
stap-probe.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
start.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
start.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
startup-with-shell.c Implement proper "startup-with-shell" support on gdbserver 2017-06-07 19:56:09 -04:00
startup-with-shell.exp Implement proper "startup-with-shell" support on gdbserver 2017-06-07 19:56:09 -04:00
statistics.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-break.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-break.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-bt.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-bt.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-line.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-line.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-line.inp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-over-clone.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-over-exit.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-over-exit.exp Avoid unstable test message in gdb.base/step-over-exit.exp 2017-03-08 22:05:36 +00:00
step-over-fork.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-over-no-symbols.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-over-syscall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-over-vfork.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-resume-infcall.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-resume-infcall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-sw-breakpoint-adjust-pc.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-sw-breakpoint-adjust-pc.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-symless.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-symless.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
step-test.c
step-test.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
store.c
store.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
structs.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
structs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
structs2.c
structs2.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
structs3.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
structs3.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
subst.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sum.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
sym-file-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sym-file-loader.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sym-file-loader.h update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sym-file-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
sym-file.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
symbol-without-target_section.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
symbol-without-target_section.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
symtab-search-order-1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
symtab-search-order-shlib-1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
symtab-search-order.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
symtab-search-order.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
term.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
term.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
testenv.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
testenv.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
trace-commands.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
twice.c
twice.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
type-opaque-lib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
type-opaque-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
type-opaque.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
ui-redirect.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
unload.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
unload.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
unloadshr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
unloadshr2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
until-nodebug.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
until.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
unwindonsignal.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
unwindonsignal.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
valgrind-db-attach.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
valgrind-db-attach.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
valgrind-disp-step.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
valgrind-disp-step.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
valgrind-infcall.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
valgrind-infcall.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
value-double-free.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
value-double-free.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
varargs.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
varargs.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vdso-warning.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vdso-warning.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vforked-prog.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-datatypes.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-datatypes.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-ptr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-ptr.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-sideeffect.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-sideeffect.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-stub-define.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-stub.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
vla-stub.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
volatile.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-bitfields.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-bitfields.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-cond-infcall.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-cond-infcall.exp gdb.base/watch-cond-infcall.exp: Don't run if target doesn't support infcalls 2017-05-30 11:24:52 +02:00
watch-cond.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-cond.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-non-mem.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-non-mem.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-read.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-read.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-vfork.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch-vfork.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch_thread_num.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watch_thread_num.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-cond-gone-stripped.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-cond-gone.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-cond-gone.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-delete.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-delete.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-hw-hit-once.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-hw-hit-once.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-hw.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-hw.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-reuse-slot.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-reuse-slot.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-solib-shr.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-solib.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-solib.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-stops-at-right-insn.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint-stops-at-right-insn.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoint.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
watchpoint.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoints.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
watchpoints.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
wchar.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
wchar.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
weaklib1.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
weaklib2.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
whatis-exp.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
whatis.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
whatis.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
wrong_frame_bt_full-main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
wrong_frame_bt_full-opaque.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
wrong_frame_bt_full.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00