binutils-gdb/gdb/testsuite/gdb.base
Luis Machado e309aa6524 Harden tests that deal with memory regions
Exercising aarch64-elf with a custom debug stub i noticed a few failures in
both gdb.base/breakpoint-in-ro-region.exp and gdb.base/memattr.exp:

FAIL: gdb.base/breakpoint-in-ro-region.exp: create read-only mem region covering main
FAIL: gdb.base/breakpoint-in-ro-region.exp: writing to read-only memory fails
FAIL: gdb.base/breakpoint-in-ro-region.exp: inserting software breakpoint in read-only memory fails

FAIL: gdb.base/memattr.exp: create mem region 1
FAIL: gdb.base/memattr.exp: create mem region 2
FAIL: gdb.base/memattr.exp: create mem region 3
FAIL: gdb.base/memattr.exp: create mem region 4
FAIL: gdb.base/memattr.exp: create mem region 5
FAIL: gdb.base/memattr.exp: info mem (1)
FAIL: gdb.base/memattr.exp: mem1 cannot be read
FAIL: gdb.base/memattr.exp: mem2 cannot be written
FAIL: gdb.base/memattr.exp: mem2 can be read
FAIL: gdb.base/memattr.exp: disable mem 1
FAIL: gdb.base/memattr.exp: mem 1 was disabled
FAIL: gdb.base/memattr.exp: enable mem 1
FAIL: gdb.base/memattr.exp: mem 1 was enabled
FAIL: gdb.base/memattr.exp: disable mem 2 4
FAIL: gdb.base/memattr.exp: mem 2 and 4 were disabled
FAIL: gdb.base/memattr.exp: enable mem 2-4
FAIL: gdb.base/memattr.exp: mem 2-4 were enabled
FAIL: gdb.base/memattr.exp: mem 1 to 5 were disabled
FAIL: gdb.base/memattr.exp: mem 1 to 5 were enabled
FAIL: gdb.base/memattr.exp: delete mem 1
FAIL: gdb.base/memattr.exp: mem 1 was deleted
FAIL: gdb.base/memattr.exp: delete mem 2 4
FAIL: gdb.base/memattr.exp: mem 2 and 4 were deleted
FAIL: gdb.base/memattr.exp: mem 2-4 were deleted

These failures don't show up with gdbserver or native gdb on Linux because
they don't export any memory maps, therefore the vector of memory regions is
empty.

Outside of that scenario, we can't guarantee the absence of memory regions
reported by the target upon a connection. In our particular target, we
provide a memory map and the memory regions vector ceases to be empty.

With a non-empty memory regions vector, manipulating memory regions will cause
gdb to be more verbose and output text. For example:

memattr.c:require_user_regions

  /* Otherwise, let the user know how to get back.  */
  if (from_tty)
    warning (_("Switching to manual control of memory regions; use "
	       "\"mem auto\" to fetch regions from the target again."));

memattr.c:create_mem_region

      if ((lo >= n->lo && (lo < n->hi || n->hi == 0))
	  || (hi > n->lo && (hi <= n->hi || n->hi == 0))
	  || (lo <= n->lo && ((hi >= n->hi && n->hi != 0) || hi == 0)))
	{
	  printf_unfiltered (_("overlapping memory region\n"));
	  return;
	}

In my particular case i got both of the above messages.

In order to fix this, i've moved the delete_memory proc from
gdb.base/memattr.exp to a new file lib/memory.exp and made lib/gdb.exp
load that file.

For both gdb.base/breakpoint-in-ro-region.exp and gdb.base/memattr.exp the
patch clears all existing memory regions after running to main. That way we
are guaranteed to have a clean state for memory regions so the tests can
exercise whatever they want and have an expected output pattern.

Regression checked on x86-64/Ubuntu 16.04.

gdb/testsuite/ChangeLog:

2017-01-26  Luis Machado  <lgustavo@codesourcery.com>

	* lib/memory.exp: New file.
	* lib/gdb.exp: Load memory.exp.
	* gdb.base/memattr.exp (delete_memory): Move proc to
	lib/memory.exp and rename to delete_memory_regions.
	Replace delete_memory with delete_memory_regions.
	Cleanup memory regions before tests.
	* gdb.base/breakpoint-in-ro-region.exp: Cleanup memory regions
	before tests.
2017-01-26 13:51:09 -06: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
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 update copyright year range in GDB files 2017-01-01 10:52:34 +04: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 update copyright year range in GDB files 2017-01-01 10:52:34 +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 update copyright year range in GDB files 2017-01-01 10:52:34 +04: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
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 update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
define.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04: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 update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dmsym.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
dmsym_main.c update copyright year range in GDB files 2017-01-01 10:52:34 +04: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 update copyright year range in GDB files 2017-01-01 10:52:34 +04: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 update copyright year range in GDB files 2017-01-01 10:52:34 +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 update copyright year range in GDB files 2017-01-01 10:52:34 +04: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 testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
fileio.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04: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 update copyright year range in GDB files 2017-01-01 10:52:34 +04: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 update copyright year range in GDB files 2017-01-01 10:52:34 +04: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 update copyright year range in GDB files 2017-01-01 10:52:34 +04: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 update copyright year range in GDB files 2017-01-01 10:52:34 +04: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-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 update copyright year range in GDB files 2017-01-01 10:52:34 +04: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 update copyright year range in GDB files 2017-01-01 10:52:34 +04: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 update copyright year range in GDB files 2017-01-01 10:52:34 +04: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.exp update copyright year range in GDB files 2017-01-01 10:52:34 +04: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 update copyright year range in GDB files 2017-01-01 10:52:34 +04: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
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 update copyright year range in GDB files 2017-01-01 10:52:34 +04: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
tui-layout.c update copyright year range in GDB files 2017-01-01 10:52:34 +04:00
tui-layout.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 update copyright year range in GDB files 2017-01-01 10:52:34 +04: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