old-cross-binutils/gdb/testsuite/gdb.base
Pedro Alves e1316e60d4 Fix and test "checkpoint" in non-stop mode
Letting a "checkpoint" run to exit with "set non-stop on" behaves
differently compared to the default all-stop mode ("set non-stop
off").

Currently, in non-stop mode:

  (gdb) start
  Temporary breakpoint 1 at 0x40086b: file src/gdb/testsuite/gdb.base/checkpoint.c, line 28.
  Starting program: build/gdb/testsuite/gdb.base/checkpoint

  Temporary breakpoint 1, main () at src/gdb/testsuite/gdb.base/checkpoint.c:28
  28        char *tmp = &linebuf[0];
  (gdb) checkpoint
  checkpoint 1: fork returned pid 24948.
  (gdb) c
  Continuing.
  Copy complete.
  Deleting copy.
  [Inferior 1 (process 24944) exited normally]
  [Switching to process 24948]
  (gdb) info threads
    Id   Target Id         Frame
    1    process 24948 "checkpoint" (running)

  No selected thread.  See `help thread'.
  (gdb) c
  The program is not being run.
  (gdb)

Two issues above:

 1. Thread 1 got stuck in "(running)" state (it isn't really running)

 2. While checkpoints try to preserve the illusion that the thread is
    still the same when the process exits, GDB switched to "No thread
    selected." instead of staying with thread 1 selected.

Problem #1 is caused by handle_inferior_event and normal_stop not
considering that when a
TARGET_WAITKIND_SIGNALLED/TARGET_WAITKIND_EXITED event is reported,
and the inferior is mourned, the target may still have execution.

Problem #2 is caused by the make_cleanup_restore_current_thread
cleanup installed by fetch_inferior_event not being able to find the
original thread 1's ptid in the thread list, thus not being able to
restore thread 1 as selected thread.  The fix is to make the cleanup
installed by make_cleanup_restore_current_thread aware of thread ptid
changes, by installing a thread_ptid_changed observer that adjusts the
cleanup's data.

After the patch, we get the same in all-stop and non-stop modes:

  (gdb) c
  Continuing.
  Copy complete.
  Deleting copy.
  [Inferior 1 (process 25109) exited normally]
  [Switching to process 25113]
  (gdb) info threads
    Id   Target Id         Frame
  * 1    process 25113 "checkpoint" main () at src/gdb/testsuite/gdb.base/checkpoint.c:28
  (gdb)

Turns out the whole checkpoints.exp file can run in non-stop mode
unmodified.  I thought of moving most of the test file's contents to a
procedure that can be called twice, once in non-stop mode and another
in all-stop mode.  But then, the test already takes close to 30
seconds to run on my machine, so I thought it'd be nicer to run
all-stop and non-stop mode in parallel.  Thus I added a new
checkpoint-ns.exp file that just appends "set non-stop on" to GDBFLAGS
and sources checkpoint.exp.

gdb/ChangeLog:
2015-08-07  Pedro Alves  <palves@redhat.com>

	* infrun.c (handle_inferior_event): If we get
	TARGET_WAITKIND_SIGNALLED or TARGET_WAITKIND_EXITED in non-stop
	mode, mark all threads of the exiting process as not-executing.
	(normal_stop): If we get TARGET_WAITKIND_SIGNALLED or
	TARGET_WAITKIND_EXITED in non-stop mode, finish all threads of the
	exiting process, if inferior_ptid still points at a process.
	* thread.c (struct current_thread_cleanup) <next>: New field.
	(current_thread_cleanup_chain): New global.
	(restore_current_thread_ptid_changed): New function.
	(restore_current_thread_cleanup_dtor): Remove the cleanup from the
	current_thread_cleanup_chain list.
	(make_cleanup_restore_current_thread): Add the cleanup data to the
	current_thread_cleanup_chain list.
	(_initialize_thread): Install restore_current_thread_ptid_changed
	as thread_ptid_changed observer.

gdb/testsuite/ChangeLog:
2015-08-07  Pedro Alves  <palves@redhat.com>

	* gdb.base/checkpoint-ns.exp: New file.
	* gdb.base/checkpoint.exp: Pass explicit "checkpoint.c" to
	standard_testfile.
2015-08-07 17:23:55 +01:00
..
comp-dir/subdir
gdbinit-history Fix PR gdb/17820 2015-05-13 09:26:54 -04:00
a2-run.exp Make gdb.base/a2-run.exp use $inferior_spawn_id and gdb_test_stdio 2015-07-29 11:09:40 +01:00
advance.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
advance.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
alias.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
all-bin.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
all-types.c
annota-input-while-running.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
annota-input-while-running.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
annota1.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
annota1.exp watch_thread_num.exp and targets with fairer event reporting 2015-01-09 14:39:41 +00:00
annota3.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
annota3.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
anon.c
anon.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
args.c
args.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
argv0-symlink.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
argv0-symlink.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
arithmet.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
arrayidx.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
arrayidx.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
assign.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
async-shell.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
async-shell.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
async.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
async.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
attach-pie-misread.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
attach-pie-misread.exp testsuite: tcl exec& -> 'kill -9 $pid' is racy (attach-many-short-lived-thread.exp races and others) 2015-07-31 20:06:24 +01:00
attach-pie-noexec.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
attach-pie-noexec.exp testsuite: tcl exec& -> 'kill -9 $pid' is racy (attach-many-short-lived-thread.exp races and others) 2015-07-31 20:06:24 +01:00
attach-twice.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
attach-twice.exp testsuite: tcl exec& -> 'kill -9 $pid' is racy (attach-many-short-lived-thread.exp races and others) 2015-07-31 20:06:24 +01:00
attach-wait-input.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
attach-wait-input.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
attach.c testsuite: Fix runaway attach processes 2014-09-12 13:39:04 +02:00
attach.exp testsuite: tcl exec& -> 'kill -9 $pid' is racy (attach-many-short-lived-thread.exp races and others) 2015-07-31 20:06:24 +01:00
attach2.c
auto-connect-native-target.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
auto-connect-native-target.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
auto-load-script Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
auto-load.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
auto-load.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
auxv.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
auxv.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
average.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
bang.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bar.c
batch-preserve-term-settings.c PR cli/17828: -batch -ex r breaks terminal 2015-01-14 11:51:06 +00:00
batch-preserve-term-settings.exp batch-preserve-term-settings.exp: use send_quit_command some more 2015-07-29 17:00:40 -04:00
baz.c
bfp-test.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bfp-test.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bg-execution-repeat.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bg-execution-repeat.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bigcore.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bigcore.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bitfields.c gdb/: 2013-02-11 18:05:35 +00:00
bitfields.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bitfields2.c
bitfields2.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bitops.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bp-cmds-execution-x-script.c PR17525 - breakpoint commands not executed when program run from -x script 2015-01-14 12:34:12 +00:00
bp-cmds-execution-x-script.exp PR17525 - breakpoint commands not executed when program run from -x script 2015-01-14 12:34:12 +00:00
bp-cmds-execution-x-script.gdb PR17525 - breakpoint commands not executed when program run from -x script 2015-01-14 12:34:12 +00:00
bp-permanent.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
bp-permanent.exp Further robustify gdb.base/bp-permanent.exp. 2015-08-03 11:09:32 -07:00
branches.c
break-always.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-always.exp Handle memory write errors on gdb.base/break-always.exp 2015-04-29 12:09:40 -03:00
break-caller-line.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-caller-line.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-entry.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-idempotent.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-idempotent.exp Skip setting HW watchpoint if skip_hw_watchpoint_multi_tests in gdb.base/break-idempotent.exp 2015-04-30 10:08:10 +01:00
break-inline.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-inline.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-interp-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-interp-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-interp.exp testsuite: tcl exec& -> 'kill -9 $pid' is racy (attach-many-short-lived-thread.exp races and others) 2015-07-31 20:06:24 +01:00
break-main-file-remove-fail.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-main-file-remove-fail.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-on-linker-gcd-function.cc Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-on-linker-gcd-function.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-probes-solib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-probes.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-probes.exp Make the default sysroot be "target:" 2015-04-02 13:38:29 +01:00
break-unload-file.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break-unload-file.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
break1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
breakpoint-in-ro-region.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
breakpoint-in-ro-region.exp breakpoint-in-ro-region.exp: Support targets stopping in mid-line after "si" 2015-03-04 10:40:40 +01:00
breakpoint-shadow.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
breakpoint-shadow.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +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 Make gdb.base/call-ar-st.exp use gdb_test_stdio 2015-07-29 11:09:40 +01:00
call-rt-st.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
call-rt-st.exp Make gdb.base/call-rt-st.exp use $inferior_spawn_id 2015-07-29 11:09:41 +01:00
call-sc.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
call-sc.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
call-signal-resume.exp Don't rely on inferior I/O in {call-signal-resume, unwindonsignal}.exp 2015-07-29 11:09:36 +01:00
call-signals.c Don't rely on inferior I/O in {call-signal-resume, unwindonsignal}.exp 2015-07-29 11:09:36 +01:00
call-strs.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
call-strs.exp Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
callexit.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
callexit.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
callfuncs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
callfuncs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-gdb-caused-signals.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
catch-gdb-caused-signals.exp Make gdb.base/catch-gdb-caused-signals.exp use gdb_test_stdio 2015-07-29 11:09:39 +01:00
catch-load-so.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-load.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-load.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-signal-fork.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-signal-fork.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-signal.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-signal.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
catch-syscall.c Support catch syscall on aarch64 linux 2015-03-18 10:47:45 +00:00
catch-syscall.exp Call gdb_exit before gdb_skip_xml_test on gdb.base/catch-syscall.exp 2015-07-24 16:46:49 -04:00
charset-malloc.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
charset.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
charset.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
checkpoint-ns.exp Fix and test "checkpoint" in non-stop mode 2015-08-07 17:23:55 +01:00
checkpoint.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
checkpoint.exp Fix and test "checkpoint" in non-stop mode 2015-08-07 17:23:55 +01:00
chng-syms.c
chng-syms.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
code-expr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
code_elim.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
code_elim1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
code_elim2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
commands.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
compare-sections.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
compare-sections.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
completion.exp Add tab completion for TUI's "focus" command 2015-06-26 10:11:28 -04:00
complex.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
complex.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
comprdebug.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
cond-eval-mode.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
cond-eval-mode.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
cond-expr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
condbreak-call-false.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
condbreak-call-false.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
condbreak.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
consecutive-step-over.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
consecutive-step-over.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
consecutive.c
consecutive.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
constvars.c Handle volatile array types in dwarf2read.c. 2014-07-01 22:11:53 +02:00
constvars.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
continue-all-already-running.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
continue-all-already-running.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
coredump-filter.c Fix PR 18208: update /proc/pid/coredump_filter by c code 2015-05-08 12:37:48 +01:00
coredump-filter.exp Fix coredump-filter.exp by correctly unsetting array 2015-05-08 13:19:19 -04:00
corefile.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
coremaker.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
coremaker2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ctxobj-f.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ctxobj-m.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ctxobj-v.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ctxobj.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
cursal.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
cursal.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
cvexpr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
cvexpr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
d10v.ld
d10vovly.c
dbx.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dcache-line-read-error.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dcache-line-read-error.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
debug-expr.c * eval.c (evaluate_subexp_standard): Fix thinko in handling 2012-08-08 21:17:04 +00:00
debug-expr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
default.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
define.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
del.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
del.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
detach.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dfp-exprs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dfp-test.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dfp-test.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
disabled-location.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
disabled-location.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
disasm-end-cu-1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
disasm-end-cu-2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
disasm-end-cu.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
disp-step-fork.c Remove testsuite compile errors with GCC5. 2015-01-25 18:50:56 +01:00
disp-step-syscall.exp New proc is_aarch32_target 2015-07-07 16:58:19 +01:00
disp-step-vfork.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
display.c
display.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dmsym.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dmsym.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dmsym_main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
double-prompt-target-event-error.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
double-prompt-target-event-error.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-bp-same-addr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-bp-same-addr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-detach.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-detach.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-next.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-next.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-non-stop.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-non-stop.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-pending.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-pending.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf-pendshr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dprintf.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
dprintf.exp Make gdb.base/dprintf.exp use gdb_test_stdio 2015-07-29 11:09:39 +01:00
dtrace-probe.c Simple testsuite for DTrace USDT probes. 2015-02-17 16:41:16 +01:00
dtrace-probe.d Simple testsuite for DTrace USDT probes. 2015-02-17 16:41:16 +01:00
dtrace-probe.exp Simple testsuite for DTrace USDT probes. 2015-02-17 16:41:16 +01:00
dump.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
dump.exp gdb: Add support for dumping to verilog hex format. 2015-04-24 22:49:59 +01:00
dup-sect.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
dup-sect.S Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
duplicate-bp.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
duplicate-bp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
echo.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
empty_exe.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ena-dis-br.exp "enable count" user input error handling (PR gdb/15678) 2015-02-06 10:27:01 -05:00
ending-run.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
ending-run.exp Make gdb.base/ending-run.exp use gdb_test_stdio 2015-07-29 11:09:42 +01:00
enum_cond.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
enum_cond.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
enumval.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
enumval.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
environ.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
eu-strip-infcall.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
eu-strip-infcall.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
eval-avoid-side-effects.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
eval-skip.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
eval.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
exe-lock.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +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 year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
execl-update-breakpoints.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
execution-termios.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
execution-termios.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
exitsignal.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
expand-psymtabs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
expand-psymtabs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
exprs.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
exprs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fileio.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
fileio.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
filesym.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
filesym.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
find-unmapped.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
find-unmapped.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
find.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
find.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
finish.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fixsection.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fixsection.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fixsectshr.c
float.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
float.exp New proc is_aarch64_target 2015-07-07 16:58:20 +01:00
foll-exec.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
foll-exec.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +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 Enable gdb.base/foll-fork.exp on OpenBSD 2015-03-04 14:53:14 +01:00
foll-vfork-exit.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
foll-vfork.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
foll-vfork.exp Disable exec-dependent follow vfork tests for remote 2015-05-28 14:40:30 -07:00
foo.c
fortran-sym-case.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fortran-sym-case.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
frame-args.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
frame-args.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
freebpcmd.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
freebpcmd.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fullname.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fullname.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fullpath-expand-func.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fullpath-expand.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
fullpath-expand.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
func-ptr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
func-ptr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
func-ptrs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
func-ptrs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
funcargs.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
funcargs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore-buffer-overflow.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore-buffer-overflow.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore-relro-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore-relro-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore-relro-pie.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore-relro-pie.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore-relro.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gcore.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb-sigterm-2.exp Have SIGTERM promptly quit GDB even when the dummy target is active 2015-07-27 12:44:12 -04:00
gdb-sigterm.c gdb.base/gdb-sigterm.exp: Fix spurious FAILs 2015-02-06 11:09:42 +01:00
gdb-sigterm.exp gdb.base/gdb-sigterm.exp: Fix spurious FAILs 2015-02-06 11:09:42 +01:00
gdb1056.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1090.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1090.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1250.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1250.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1555-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1555.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1555.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1821.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb1821.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb11530.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb11530.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb11531.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb11531.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdb_history
gdbhistsize-history.exp Tweak the handling of $GDBHISTSIZE edge cases [PR gdb/16999] 2015-06-17 14:12:19 -04:00
gdbindex-stabs-dwarf.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdbindex-stabs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdbindex-stabs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gdbinit-history.exp Test the interaction between GDBHISTSIZE and .gdbinit 2015-06-18 11:51:19 -04:00
gdbvars.c Ensure unreferenced static symbols aren't omitted by clang (either marking them __attribute__((used)) or making them non-static) 2014-04-24 22:33:46 -07:00
gdbvars.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
global-var-nested-by-dso-solib1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
global-var-nested-by-dso-solib2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
global-var-nested-by-dso.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
global-var-nested-by-dso.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gnu-debugdata.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gnu-debugdata.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gnu-ifunc-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gnu-ifunc.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gnu-ifunc.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
gnu_vector.c Add vector ABI tests to gnu_vector.exp 2015-06-17 11:17:07 +02:00
gnu_vector.exp gnu_vector.exp: Skip infcall tests on x86/x86_64 2015-07-10 10:36:02 +02:00
grbx.c
hashline1.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hashline2.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hashline3.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak-in-shr-unsupported-shr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak-in-shr-unsupported.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak-in-shr-unsupported.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak-unmapped.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak-unmapped.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hbreak2.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
help.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
history-duplicates.exp Add option to remove duplicate command history entries 2015-06-26 11:05:56 -04:00
hook-stop-continue.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hook-stop-continue.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hook-stop-frame.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
hook-stop-frame.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
huge.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
huge.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ifelse.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
included.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
included.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
included.h Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
inferior-died.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
inferior-died.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
infnan.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
infnan.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-fun-solib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-fun.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-fun.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-macros.c * gdb.base/info-macros.c: Fix whitespace. 2012-09-05 18:20:53 +00:00
info-macros.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-os.c gdb.base/info-os.c: Include stdlib.h 2015-02-23 14:03:48 +00:00
info-os.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-proc.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-shared-solib1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-shared-solib2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-shared.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-shared.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
info-target.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
infoline.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
infoline.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
int-type.c
interact.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
interp.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
interp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
interrupt-noterm.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
interrupt-noterm.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +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 interrupt.exp: Revert back to checking gdb,noinferiorio at the top 2015-07-29 11:09:46 +01:00
jit-dlmain.c
jit-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
jit-simple.c
jit-simple.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
jit-so.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
jit-solib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
jit.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
jump.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
jump.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
kill-after-signal.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
kill-after-signal.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
killed-outside.c Add test that exercises the inferior being killed while stopped under GDB 2015-07-14 10:55:05 +01:00
killed-outside.exp Add test that exercises the inferior being killed while stopped under GDB 2015-07-14 10:55:05 +01:00
label.c gdb/testsuite 2013-01-18 19:14:51 +00:00
label.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
langs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +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 year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +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 year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ldbl_e308.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
line-symtabs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
line-symtabs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
line-symtabs.h Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
lineinc.c
lineinc.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
lineinc1.h
lineinc2.h
lineinc3.h
linespecs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
list.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
list0.c list.exp: Avoid hardcoding line numbers. 2013-03-28 11:56:51 +00:00
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 year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
long_long.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
long_long.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
longest-types.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
longest-types.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
longjmp.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
longjmp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
m32r.ld
m32rovly.c
macscp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
macscp1.c PR macros/7961: 2012-06-27 18:08:41 +00:00
macscp2.h
macscp3.h
macscp4.h
maint.exp Move vptr_{fieldno,basetype} out of main_type, and update everything accordingly. 2015-01-31 21:40:57 -08:00
Makefile.in * gdb.base/Makefile.in (EXECUTABLES): Add completion. 2014-05-16 12:34:05 -07:00
memattr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
memattr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04: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 year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
miscexprs.c
miscexprs.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
morestack.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
morestack.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
moribund-step.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
multi-forks.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
multi-forks.exp Make gdb.base/multi-forks.exp work with the native-extended-gdbserver board 2015-07-29 16:24:53 +01:00
multi-line-starts-subshell.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
nextoverexit.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
nextoverexit.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
nodebug.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
nodebug.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
nofield.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
nofield.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
noreturn-finish.c Use GCC5/DWARF5 DW_AT_noreturn to mark functions that don't return normally. 2015-01-23 17:29:19 +01:00
noreturn-finish.exp Use GCC5/DWARF5 DW_AT_noreturn to mark functions that don't return normally. 2015-01-23 17:29:19 +01:00
noreturn-return.c Use GCC5/DWARF5 DW_AT_noreturn to mark functions that don't return normally. 2015-01-23 17:29:19 +01:00
noreturn-return.exp Use GCC5/DWARF5 DW_AT_noreturn to mark functions that don't return normally. 2015-01-23 17:29:19 +01:00
normal.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
nostdlib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
nostdlib.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
opaque.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +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 year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ovlymgr.c
ovlymgr.h
page.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-after-ctrl-c-running.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-after-ctrl-c-running.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-bg-execution.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-bg-execution.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-execution-startup.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-execution-startup.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-inferior-exit.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
paginate-inferior-exit.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pc-fp.c
pc-fp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pending.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pending.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pendshr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
permissions.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pi.txt
pie-execl.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pie-execl.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pointers.c
pointers.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +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 year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pr11022.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
pr11022.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prelink-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prelink.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prelink.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
print-file-var-lib1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
print-file-var-lib2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
print-file-var-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
print-file-var.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
print-symbol-loading-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
print-symbol-loading-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
print-symbol-loading.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
printcmds.c * gdb.base/callfuncs.c (main): Assign malloc's return value 2013-11-27 10:39:26 -02:00
printcmds.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prologue-include.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prologue-include.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prologue-include.h Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prologue.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
prologue.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
psymtab.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
psymtab1.c
psymtab2.c
ptr-typedef.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ptr-typedef.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ptype.c
ptype.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ptype1.c
radix.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
random-signal.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
random-signal.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
randomize.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
randomize.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
range-stepping.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
range-stepping.exp [testsuite] Skip gdb.trace/range-stepping.exp test case if not supported 2015-07-15 14:33:32 +01:00
readline-ask.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
readline-ask.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
readline-ask.inputrc Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
readline.exp Read $GDBHISTSIZE instead of $HISTSIZE 2015-06-17 14:03:50 -04:00
realname-expand-real.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
realname-expand.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
realname-expand.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
recpar.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
recpar.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
recurse.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
recurse.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
relational.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
relativedebug.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
relativedebug.exp Skip gdb.base/relativedebug.exp if libc doesn't have debug info 2015-04-30 09:55:06 +01:00
relocate.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
relocate.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
remote.c
remote.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
remotetimeout.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
reread.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
reread1.c
reread2.c
restore.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
restore.exp Don't rely on inferior I/O in gdb.base/restore.exp 2015-07-29 11:09:37 +01:00
return-nodebug.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
return-nodebug.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
return-nodebug1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
return.c
return.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
return2.c
return2.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
run.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
save-bp.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
save-bp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
savedregs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
savedregs.exp Relax pattern to match the output of "info frame" in gdb.base/savedregs.exp 2015-03-26 08:16:20 +00:00
scope.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +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 year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
segv.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sep-proc.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sep.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sep.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sepdebug.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sepdebug.exp Allow gdb to find debug symbols file by build-id for PE file format also 2015-06-15 12:10:55 +01:00
sepdebug2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sepsymtab.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sepsymtab.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
set-lang-auto.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
set-noassign.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
setshow.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
setshow.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
setvar.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
setvar.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
shell.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
shlib-call.exp Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01: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 year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +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 year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigaltstack.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigaltstack.exp Unbreak nios2-*-linux* GDB testing. 2015-07-15 08:34:09 -07:00
sigbpt.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigbpt.exp Unbreak nios2-*-linux* GDB testing. 2015-07-15 08:34:09 -07:00
sigchld.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigchld.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
siginfo-addr.c Don't rely on inferior I/O in gdb.base/siginfo-addr.exp 2015-07-29 11:09:36 +01:00
siginfo-addr.exp Don't rely on inferior I/O in gdb.base/siginfo-addr.exp 2015-07-29 11:09:36 +01:00
siginfo-infcall.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
siginfo-infcall.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
siginfo-obj.c Remove testsuite compile errors with GCC5. 2015-01-25 18:50:56 +01:00
siginfo-obj.exp New proc supports_get_siginfo_type 2015-06-24 14:53:03 +01:00
siginfo-thread.c Remove testsuite compile errors with GCC5. 2015-01-25 18:50:56 +01:00
siginfo-thread.exp New proc supports_get_siginfo_type 2015-06-24 14:53:03 +01:00
siginfo.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
siginfo.exp Unbreak nios2-*-linux* GDB testing. 2015-07-15 08:34:09 -07:00
signals.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
signals.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
signest.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
signest.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
signull.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
signull.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigrepeat.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigrepeat.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigstep.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sigstep.exp Unbreak nios2-*-linux* GDB testing. 2015-07-15 08:34:09 -07:00
sizeof.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
sizeof.exp Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01: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 year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
skip.c testsuite/gdb.base: Make skip test use defined behaviour. 2013-06-18 18:16:16 +00:00
skip.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
skip1.c testsuite/gdb.base: Make skip test use defined behaviour. 2013-06-18 18:16:16 +00:00
so-disc-shr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
so-impl-ld.c
so-impl-ld.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
so-indr-cl.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
so-indr-cl.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-corrupted.exp Fix gdb.base/solib-corrupted.exp after dtrace probes changes 2015-02-20 23:10:53 +00:00
solib-disc.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-disc.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-display-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-display-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-display.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-nodir.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-overlap-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-overlap-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-overlap.exp testsuite: tcl exec& -> 'kill -9 $pid' is racy (attach-many-short-lived-thread.exp races and others) 2015-07-31 20:06:24 +01:00
solib-search-lib1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-search-lib2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-search.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-search.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-search.h Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-symbol-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-symbol-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-symbol.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-weak.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib-weak.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib.c
solib.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
solib1.c Drop non-prototype C function header variants: solib1.c 2014-11-13 10:20:42 +01:00
solib2.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
source-dir.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
source-error.gdb Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
source-execution.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
source-execution.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
source-execution.gdb Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
source-nofile.gdb Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
source-test.gdb Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
source.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
spu.ld
ss.h
sss-bp-on-user-bp-2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sss-bp-on-user-bp-2.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sss-bp-on-user-bp.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sss-bp-on-user-bp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
stack-checking.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
stack-checking.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
stale-infcall.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
stale-infcall.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
stap-probe.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
stap-probe.exp Move compute_probe_arg' and compile_probe_arg' to probe.c 2015-02-17 15:50:19 +01:00
start.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
start.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
statistics.exp Introduce gdb_interact in testsuite 2015-01-22 15:49:08 -05:00
step-break.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-break.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-bt.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-bt.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-line.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-line.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-line.inp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-over-no-symbols.exp PR13858 - Can't do displaced stepping with no symbols 2015-04-10 10:07:02 +01:00
step-resume-infcall.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-resume-infcall.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-sw-breakpoint-adjust-pc.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-sw-breakpoint-adjust-pc.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-symless.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-symless.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
step-test.c
step-test.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
store.c
store.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
structs.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
structs.exp Fix print of value type in a corner case of finish 2015-02-26 10:58:00 -05:00
structs2.c
structs2.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
structs3.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
structs3.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
subst.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +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 year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sym-file-loader.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sym-file-loader.h Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sym-file-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
sym-file.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
symbol-without-target_section.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
symbol-without-target_section.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
symtab-search-order-1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
symtab-search-order-shlib-1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
symtab-search-order.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
symtab-search-order.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
term.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
term.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
testenv.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
testenv.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
trace-commands.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
tui-layout.exp gdb/testsuite: New skip_tui_tests predicate. 2015-05-20 21:57:20 +02:00
twice.c
twice.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
type-opaque-lib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
type-opaque-main.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
type-opaque.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
ui-redirect.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
unload.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
unload.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
unloadshr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
unloadshr2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
until-nodebug.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
until.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
unwindonsignal.c Don't rely on inferior I/O in {call-signal-resume, unwindonsignal}.exp 2015-07-29 11:09:36 +01:00
unwindonsignal.exp Don't rely on inferior I/O in {call-signal-resume, unwindonsignal}.exp 2015-07-29 11:09:36 +01:00
valgrind-db-attach.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
valgrind-db-attach.exp Introduce gdb_interact in testsuite 2015-01-22 15:49:08 -05:00
valgrind-infcall.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
valgrind-infcall.exp Fix gdb.base/valgrind-infcall.exp with the native-extended-gdbserver board 2015-08-06 23:38:51 +01:00
value-double-free.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
value-double-free.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
varargs.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
varargs.exp Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
vdso-warning.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vdso-warning.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vforked-prog.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-datatypes.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-datatypes.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-ptr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-ptr.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-sideeffect.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-sideeffect.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-stub-define.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-stub.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
vla-stub.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
volatile.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-bitfields.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-bitfields.exp Use software watchpoints if hardware watchpoints are not available when testing gdb.base/watch-bitfields.exp 2015-04-29 12:22:24 -03:00
watch-cond-infcall.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-cond-infcall.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-cond.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-cond.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-non-mem.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-non-mem.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-read.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-read.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-vfork.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch-vfork.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watch_thread_num.c watch_thread_num.exp and targets with fairer event reporting 2015-01-09 14:39:41 +00:00
watch_thread_num.exp Skip watch_thread_num.exp on targets without access watchpoints 2015-05-08 12:50:47 +02:00
watchpoint-cond-gone-stripped.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-cond-gone.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-cond-gone.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-delete.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-delete.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-hw-hit-once.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-hw-hit-once.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-hw.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-hw.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-reuse-slot.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-reuse-slot.exp [arm] watchpoint-reuse-slot.exp: skip setting HW points on some address 2015-04-10 16:23:13 +01:00
watchpoint-solib-shr.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-solib.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-solib.exp Increase timeout in watch-bitfields.exp for software watchpoint 2015-04-15 12:46:58 +01:00
watchpoint-stops-at-right-insn.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint-stops-at-right-insn.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoint.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
watchpoint.exp Clean up testsuite compiler_info support. 2015-07-24 15:32:45 -07:00
watchpoints.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
watchpoints.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
wchar.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
wchar.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
weaklib1.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
weaklib2.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
whatis-exp.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
whatis.c Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00
whatis.exp Update year range in copyright notice of all files owned by the GDB project. 2015-01-01 13:32:14 +04:00