old-cross-binutils/gdb/testsuite/gdb.base
Pedro Alves 20aa2c606e Extend JIT-reader test and fix GDB problems that exposes
The jit-reader.exp test isn't really exercising the jit-reader's
unwinder API at all.  This commit address that, and then fixes GDB
problems exposed.

- The custom JIT reader provided for the jit-reader.exp testcase
  always rejects the jitted function's frame...

  This is because the custom JIT reader in the testcase never ever
  sets state->code_begin/end, so the bounds check in
  gdb.base/jitreader.c:unwind_frame:

   if (this_ip >= state->code_end || this_ip < state->code_begin)
     return GDB_FAIL;

  tends to fail, unless you're "lucky" (because it references
  uninitialized data).

  The result is that GDB is always actually using a built-in unwinder
  for the jitted function.

- The provided unwinder doesn't do anything that GDB's built-in
  unwinder can't do.

  IOW, we can't really tell whether the JIT reader's unwinder is
  working or not.

  I fixed that by making the jitted function mangle its own stack
  pointer with a xor, and then teaching the jit unwinder to demangle
  it back (another xor).  So now "backtrace" with GDB's built-in
  unwinder fails while with the jit unwinder, it succeeds.

- GDB crashes after unloading the JIT reader, and flushing frames...

  I made the testcase use the "flushregs" command after unloading the
  JIT reader, to force the JIT frames to be flushed.  However, that
  crashes GDB...

  When reinit_frame_cache tears down a frame's cache, it calls its
  unwinder's dealloc_cache method, which for JIT frames ends up in
  jit.c:jit_dealloc_cache.  This function calls each of the frame's
  gdb_reg_value's "free" pointer:

   for (i = 0; i < gdbarch_num_regs (frame_arch); i++)
     if (priv_data->registers[i] && priv_data->registers[i]->free)
       priv_data->registers[i]->free (priv_data->registers[i]);

  and the problem is these gdb_reg_value instances have been returned
  by the JIT reader that has been already unloaded, and their "free"
  function pointers likely point to functions in the DSO that has
  already been unloaded...

  A fix for that could be to call reinit_frame_cache in
  jit_reader_unload_command _before_ unloading the jit reader DSO so
  that the jit reader is given a chance to clean up the gdb_reg_values
  before it is unloaded.  However, the fix for the point below makes
  this unnecessary, because it stops jit.c from keeping around
  gdb_reg_values in the first place.

- However, it still makes sense to clear the frame cache when loading
  or unloading a JIT unwinder.

  This makes testing a JIT unwinder a bit simpler.

- Not only the frame cache actually -- gdb is not unloading the
  jit-registered objfiles when the JIT reader is unloaded, and not
  loading the already-registered descriptors when a JIT reader is
  loaded.

  The new test exercises unloading the jit reader, loading it back
  again, and then making sure the JIT reader's unwinder works again.
  Without the unload/re-load of already-read descriptors, the newly
  loaded JIT would have no idea where the new function is, because
  it's stored at symbol read time.

- I added a couple "info frame" calls to the test, and that
  crashes GDB...

  The problem is that jit_frame_prev_register assumes it'll only be
  called for raw registers, so when it gets a pseudo register number,
  the "priv->registers[reg]" access is really an out-of-bounds access.

  To fix that, I made jit_frame_prev_register use
  gdbarch_pseudo_register_read_value for reading the pseudo-registers.
  However, that works with a regcache and we don't have one.  To fix
  that, I made the JIT unwinder store a regcache in its cache instead
  of an array of gdb_reg_value pointers.

gdb/ChangeLog:
2016-07-01  Pedro Alves  <palves@redhat.com>
	    Tom Tromey  <tom@tromey.com>

	* jit.c (jit_reader_load_command): Call reinit_frame_cache and
	jit_inferior_created_hook.
	(jit_reader_unload_command): Call reinit_frame_cache and
	jit_inferior_exit_hook.
	* jit.c (struct jit_unwind_private) <registers>: Delete field.
	<regcache>: New field.
	(jit_unwind_reg_set_impl): Set the register's value in the
	regcache.  Free the passed-in gdb_reg_value.
	(jit_dealloc_cache): Adjust to free the regcache.
	(jit_frame_sniffer): Allocate a regcache instead of an array of
	gdb_reg_value pointers.
	(jit_frame_this_id): Adjust.
	(jit_frame_prev_register): Read raw registers off of the regcache
	instead of from the gdb_reg_value pointer array.  Use
	gdbarch_pseudo_register_read_value to read pseudo registers.
	* regcache.c (regcache_raw_set_cached_value): New function,
	factored out from ...
	(regcache_raw_write): ... here.
	* regcache.h (regcache_raw_set_cached_value): Declare.

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

	* gdb.base/jit-reader.exp (info_registers_current_frame): New
	procedure.
	(jit_reader_test): Test the jit reader's unwinder.
	* gdb.base/jithost.c (jit_function_00_code): New global.
	(main): Use memcpy to fill in the mmapped code, instead of poking
	bytes manually here.
	* gdb.base/jitreader.c (enum register_mapping) <AMD64_RBP>: New
	value.
	(read_debug_info): Save the function's range.
	(read_sp): New function.
	(unwind_frame): Use it.  Also unwind RBP.
	(get_frame_id): Use read_sp.
	(gdb_init_reader): Use calloc instead of malloc.
	* lib/gdb.exp (get_hexadecimal_valueof): Add optional 'test'
	parameter.  Use gdb_test_multiple.
2016-07-01 11:56:39 +01:00
..
comp-dir/subdir
gdbinit-history Fix PR gdb/17820 2015-05-13 09:26:54 -04:00
a2-run.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
advance.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
advance.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
alias.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
all-bin.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
all-types.c
annota-input-while-running.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
annota-input-while-running.exp Fix syntax error in annota-input-while-running.exp 2016-05-24 12:11:38 +01:00
annota1.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
annota1.exp Fix fail in gdb.base/annota1.exp and gdb.base/annota3.exp 2016-04-22 15:35:07 +01:00
annota3.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
annota3.exp Fix fail in gdb.base/annota1.exp and gdb.base/annota3.exp 2016-04-22 15:35:07 +01:00
anon.c
anon.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
args.c
args.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
argv0-symlink.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
argv0-symlink.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
arithmet.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
arrayidx.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
arrayidx.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
asmlabel.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
asmlabel.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
assign.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
async-shell.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
async-shell.exp Fix PR threads/19422 - show which thread caused stop 2016-01-18 15:15:18 +00:00
async.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
async.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach-pie-misread.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach-pie-misread.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach-pie-noexec.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach-pie-noexec.exp Fix logic in exec_file_locate_attach 2016-02-24 11:31:58 +00:00
attach-twice.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach-twice.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach-wait-input.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach-wait-input.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach.c
attach.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
attach2.c
auto-connect-native-target.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
auto-connect-native-target.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
auto-load-script GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
auto-load.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
auto-load.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
auxv.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
auxv.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
average.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
bad-file.exp Fix copyright year, remove linux only test. 2016-04-19 09:06:53 -07:00
bang.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bar.c
batch-preserve-term-settings.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
batch-preserve-term-settings.exp Match shell_prompt # in batch-preserve-term-settings.exp 2016-05-16 17:32:43 +01:00
baz.c
bfp-test.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bfp-test.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bg-execution-repeat.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bg-execution-repeat.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bigcore.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bigcore.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bitfields.c
bitfields.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bitfields2.c
bitfields2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bitops.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bp-cmds-execution-x-script.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bp-cmds-execution-x-script.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bp-cmds-execution-x-script.gdb GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bp-permanent.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
bp-permanent.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
branch-to-self.c New test case gdb.base/branch-to-self.exp 2016-04-25 09:53:51 +01:00
branch-to-self.exp Skip gdb.base/branch-to-self.exp if gdb,nosignals exists 2016-04-27 16:13:52 +01:00
break-always.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-always.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-caller-line.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-caller-line.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-entry.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-fun-addr.exp Fix regression introduced in "break *<EXPR>" by explicit location patches. 2016-01-21 14:23:15 +04:00
break-fun-addr1.c Fix regression introduced in "break *<EXPR>" by explicit location patches. 2016-01-21 14:23:15 +04:00
break-fun-addr2.c Fix regression introduced in "break *<EXPR>" by explicit location patches. 2016-01-21 14:23:15 +04:00
break-idempotent.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-idempotent.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-inline.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-inline.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-interp-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-interp-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-interp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-main-file-remove-fail.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-main-file-remove-fail.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-on-linker-gcd-function.cc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-on-linker-gcd-function.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-probes-solib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-probes.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-probes.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-unload-file.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break-unload-file.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
break.exp Per-inferior/Inferior-qualified thread IDs 2016-01-13 10:59:43 +00:00
break1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
breakpoint-in-ro-region.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
breakpoint-in-ro-region.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
breakpoint-shadow.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
breakpoint-shadow.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +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 gdb: Use UNSUPPORTED not XFAIL for unsupported target features 2016-06-13 15:26:26 +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 gdb: Use UNSUPPORTED not XFAIL for unsupported target features 2016-06-13 15:26:26 +01:00
call-sc.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
call-sc.exp gdb: Use UNSUPPORTED not XFAIL for unsupported target features 2016-06-13 15:26:26 +01:00
call-signal-resume.exp gdb: Use UNSUPPORTED not XFAIL for unsupported target features 2016-06-13 15:26:26 +01:00
call-signals.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
call-strs.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
call-strs.exp gdb: Use UNSUPPORTED not XFAIL for unsupported target features 2016-06-13 15:26:26 +01:00
callexit.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
callexit.exp gdb: Use UNSUPPORTED not XFAIL for unsupported target features 2016-06-13 15:26:26 +01:00
callfuncs.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
callfuncs.exp gdb: Use UNSUPPORTED not XFAIL for unsupported target features 2016-06-13 15:26:26 +01:00
catch-fork-kill.c Fix gdb.base/catch-fork-kill.c compilation 2016-03-01 17:11:57 +00:00
catch-fork-kill.exp Fix PR 19494: hang when killing unfollowed fork children 2016-01-25 13:16:43 +00:00
catch-fork-static.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-gdb-caused-signals.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-gdb-caused-signals.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-load-so.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-load.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-load.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
catch-signal-fork.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-signal-fork.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-signal-siginfo-cond.c Fix PR19388: Can't access $_siginfo in breakpoint (catch signal) condition 2016-01-13 10:40:33 +00:00
catch-signal-siginfo-cond.exp Fix PR19388: Can't access $_siginfo in breakpoint (catch signal) condition 2016-01-13 10:40:33 +00:00
catch-signal.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-signal.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
catch-syscall.c Set unknown_syscall differently on arm linux 2016-06-29 14:51:41 +01:00
catch-syscall.exp Probe catch syscall support 2016-06-28 12:03:28 +01:00
charset-malloc.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
charset.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
charset.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
checkpoint-ns.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
checkpoint.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
checkpoint.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
chng-syms.c
chng-syms.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
code-expr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
code_elim.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
code_elim1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
code_elim2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
command-line-input.exp Test issuing a command split in multiple lines with continuation chars 2016-03-09 18:24:58 +00:00
commands.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
compare-sections.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
compare-sections.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
completion.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
complex.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
complex.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
comprdebug.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cond-eval-mode.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cond-eval-mode.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cond-expr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
condbreak-call-false.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
condbreak-call-false.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
condbreak.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
consecutive-step-over.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
consecutive-step-over.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
consecutive.c
consecutive.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
constvars.c
constvars.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
continue-all-already-running.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
continue-all-already-running.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
coredump-filter.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
coredump-filter.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
corefile.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
coremaker.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ctxobj-f.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ctxobj-m.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ctxobj-v.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ctxobj.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
cursal.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cursal.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cvexpr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
cvexpr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
d10vovly.c
dbx.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dcache-line-read-error.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dcache-line-read-error.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
debug-expr.c
debug-expr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
default.exp Add support for the Rust language 2016-05-17 12:02:00 -06:00
define.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
del.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
del.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
detach.exp Fix detach.exp remote check 2016-05-02 13:10:33 -04:00
dfp-exprs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dfp-test.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dfp-test.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disabled-location.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disabled-location.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disasm-end-cu-1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disasm-end-cu-2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disasm-end-cu.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disasm-optim.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disasm-optim.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disasm-optim.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
disasm-optim.S GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
display.c
display.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dmsym.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dmsym.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dmsym_main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
double-prompt-target-event-error.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
double-prompt-target-event-error.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-bp-same-addr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-bp-same-addr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-detach.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-detach.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-next.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-next.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-non-stop.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-non-stop.exp Fix PR threads/19422 - show which thread caused stop 2016-01-18 15:15:18 +00:00
dprintf-pending.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf-pending.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
dprintf-pendshr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dprintf.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dso2dso-dso1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dso2dso-dso1.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dso2dso-dso2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dso2dso-dso2.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dso2dso.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dso2dso.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
dtrace-probe.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dtrace-probe.d GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dtrace-probe.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dump.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
dump.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dup-sect.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
dup-sect.S GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
duplicate-bp.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
duplicate-bp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
echo.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
empty_exe.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ena-dis-br.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ending-run.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
ending-run.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
enum_cond.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
enum_cond.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
enumval.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
enumval.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
environ.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
eu-strip-infcall.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
eu-strip-infcall.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
eval-avoid-side-effects.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
eval-skip.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
eval.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
examine-backward.c Add negative repeat count to 'x' command 2016-06-09 22:50:47 -07:00
examine-backward.exp Add negative repeat count to 'x' command 2016-06-09 22:50:47 -07:00
exe-lock.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +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 Fix PR19548: Breakpoint re-set inserts breakpoints when it shouldn't 2016-02-09 12:12:17 +00:00
execl-update-breakpoints.exp Fix PR19548: Breakpoint re-set inserts breakpoints when it shouldn't 2016-02-09 12:12:17 +00:00
execution-termios.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
execution-termios.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
exitsignal.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
expand-psymtabs.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
expand-psymtabs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
exprs.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
exprs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fileio.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
fileio.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
filesym.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
filesym.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
find-unmapped.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
find-unmapped.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
find.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
find.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
finish.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fixsection.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fixsection.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
fixsectshr.c
float.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
float.exp gdb: new AndesTech NDS32 port 2016-06-17 16:58:05 +08:00
foll-exec-mode.c [testsuite] Remove BASEDIR 2016-02-04 15:46:37 +00:00
foll-exec-mode.exp [testsuite] Remove BASEDIR 2016-02-04 15:46:37 +00:00
foll-exec.c [testsuite] Remove BASEDIR 2016-02-04 15:46:37 +00:00
foll-exec.exp [testsuite] Remove BASEDIR 2016-02-04 15:46:37 +00:00
foll-fork.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
foll-fork.exp Reapply: List inferiors/threads/pspaces in ascending order 2016-01-12 01:12:38 +00:00
foll-vfork-exit.c [testsuite] Remove BASEDIR 2016-02-04 15:46:37 +00:00
foll-vfork.c [testsuite] Remove BASEDIR 2016-02-04 15:46:37 +00:00
foll-vfork.exp [testsuite] Remove BASEDIR 2016-02-04 15:46:37 +00:00
foo.c
fork-running-state.c Fix PR 19461: strange "info thread" behavior in non-stop 2016-01-25 13:17:34 +00:00
fork-running-state.exp Fix PR 19461: strange "info thread" behavior in non-stop 2016-01-25 13:17:34 +00:00
fortran-sym-case.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fortran-sym-case.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
frame-args.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
frame-args.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
freebpcmd.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
freebpcmd.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fullname.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fullname.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fullpath-expand-func.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fullpath-expand.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
fullpath-expand.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
func-ptr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
func-ptr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
func-ptrs.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
func-ptrs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
funcargs.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
funcargs.exp testsuite: i386 regression for funcargs.exp 2016-01-11 22:27:15 +01:00
gcore-buffer-overflow.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gcore-buffer-overflow.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gcore-relro-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gcore-relro-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gcore-relro-pie.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gcore-relro-pie.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gcore-relro.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
gcore.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gcore.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb-sigterm-2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb-sigterm.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb-sigterm.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1056.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1090.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1090.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1250.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1250.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1555-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1555.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1555.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
gdb1821.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb1821.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb11530.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb11530.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb11531.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb11531.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdb_history
gdbhistsize-history.exp testsuite: Fix false FAILs with .bashrc GDBHISTFILE=... 2016-04-07 22:18:49 +02:00
gdbindex-stabs-dwarf.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdbindex-stabs.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdbindex-stabs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gdbinit-history.exp testsuite: Fix false FAILs with .bashrc GDBHISTFILE=... 2016-04-07 22:18:49 +02:00
gdbvars.c
gdbvars.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
global-var-nested-by-dso-solib1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
global-var-nested-by-dso-solib2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
global-var-nested-by-dso.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
global-var-nested-by-dso.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
gnu-debugdata.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gnu-debugdata.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gnu-ifunc-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gnu-ifunc.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gnu-ifunc.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
gnu_vector.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
gnu_vector.exp gnu_vector.exp: Respect `should_kfail' for PR 8549 2016-01-20 19:41:45 +01:00
grbx.c
hashline1.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hashline2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hashline3.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hbreak-in-shr-unsupported-shr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hbreak-in-shr-unsupported.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hbreak-in-shr-unsupported.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
hbreak-unmapped.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hbreak-unmapped.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hbreak.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hbreak.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hbreak2.exp Per-inferior/Inferior-qualified thread IDs 2016-01-13 10:59:43 +00:00
help.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
history-duplicates.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hook-stop.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
hook-stop.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
huge.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
huge.exp gdb: New set/show max-value-size command. 2016-02-01 18:05:35 +00:00
ifelse.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
included.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
included.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
included.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
infcall-exec.c breakpoints/19546: Fix crash after updating breakpoints 2016-02-09 16:04:45 -08:00
infcall-exec.exp breakpoints/19546: Fix crash after updating breakpoints 2016-02-09 16:04:45 -08:00
infcall-exec2.c breakpoints/19546: Fix crash after updating breakpoints 2016-02-09 16:04:45 -08:00
inferior-died.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
inferior-died.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
infnan.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
infnan.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-fun-solib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-fun.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-fun.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-macros.c
info-macros.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-os.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-os.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-proc.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-shared-solib1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-shared-solib2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-shared.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-shared.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
info-target.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
infoline.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
infoline.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
int-type.c
interact.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
interp.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
interp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
interrupt-noterm.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
interrupt-noterm.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +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 GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
jit-dlmain.c
jit-main.c testsuite: Fix for gcc-4.8: gdb.base/jit.exp gdb.base/jit-so.exp 2016-04-08 15:38:53 +02:00
jit-protocol.h Add a test case for the jit-reader interface 2016-06-17 19:24:08 +01:00
jit-reader.exp Extend JIT-reader test and fix GDB problems that exposes 2016-07-01 11:56:39 +01:00
jit-simple.c
jit-simple.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
jit-so.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
jit-solib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
jit.exp Improve gdb_remote_download, remove gdb_download 2016-04-05 13:59:49 -04:00
jithost.c Extend JIT-reader test and fix GDB problems that exposes 2016-07-01 11:56:39 +01:00
jithost.h Add a test case for the jit-reader interface 2016-06-17 19:24:08 +01:00
jitreader.c Extend JIT-reader test and fix GDB problems that exposes 2016-07-01 11:56:39 +01:00
jump.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
jump.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
kill-after-signal.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
kill-after-signal.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
kill-detach-inferiors-cmd.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
kill-detach-inferiors-cmd.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
killed-outside.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
killed-outside.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
label.c
label.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
langs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +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 GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +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 GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ldbl_e308.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
line-symtabs.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
line-symtabs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
line-symtabs.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
lineinc.c
lineinc.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
lineinc1.h
lineinc2.h
lineinc3.h
linespecs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
list.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +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 GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
long_long.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
long_long.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
longest-types.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
longest-types.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
longjmp.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
longjmp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
m32r.ld
m32rovly.c
macscp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
macscp1.c
macscp2.h
macscp3.h
macscp4.h
maint.exp gdb: New maint info line-table command. 2016-03-11 22:48:21 +00:00
max-value-size.c gdb: New set/show max-value-size command. 2016-02-01 18:05:35 +00:00
max-value-size.exp gdb: New set/show max-value-size command. 2016-02-01 18:05:35 +00:00
memattr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
memattr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +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 GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
miscexprs.c
miscexprs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
morestack.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
morestack.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
moribund-step.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
multi-forks.c [testsuite] Unbuffer the output in gdb.base/multi-forks.c 2016-01-22 09:02:11 +00:00
multi-forks.exp Reapply: List inferiors/threads/pspaces in ascending order 2016-01-12 01:12:38 +00:00
multi-line-starts-subshell.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-addr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-addr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-subp1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-subp1.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-subp2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-subp2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-subp3.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nested-subp3.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
new-ui.c Add "new-ui console" tests 2016-06-21 01:11:57 +01:00
new-ui.exp Add "new-ui console" tests 2016-06-21 01:11:57 +01:00
nextoverexit.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nextoverexit.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nodebug.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
nodebug.exp gdb: Use UNSUPPORTED not XFAIL for unsupported target features 2016-06-13 15:26:26 +01:00
nofield.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nofield.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
noreturn-finish.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
noreturn-finish.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
noreturn-return.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
noreturn-return.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
normal.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nostdlib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
nostdlib.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
offsets.c Support structure offsets that are 512K or larger. 2016-06-24 21:02:36 -04:00
offsets.exp Support structure offsets that are 512K or larger. 2016-06-24 21:02:36 -04:00
opaque.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +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 GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ovlymgr.c
ovlymgr.h
page.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-after-ctrl-c-running.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-after-ctrl-c-running.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-bg-execution.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-bg-execution.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-execution-startup.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-execution-startup.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-inferior-exit.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
paginate-inferior-exit.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pc-fp.c
pc-fp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pending.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pending.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
pendshr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
permissions.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pi.txt
pie-execl.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pie-execl.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pointers.c
pointers.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +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 GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr11022.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
pr11022.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
prelink-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
prelink.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
prelink.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
print-file-var-lib1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
print-file-var-lib2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
print-file-var-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
print-file-var.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
print-symbol-loading-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
print-symbol-loading-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
print-symbol-loading.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
printcmds.c
printcmds.exp gdb: Use UNSUPPORTED not XFAIL for unsupported target features 2016-06-13 15:26:26 +01:00
prologue-include.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
prologue-include.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
prologue-include.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
prologue.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
prologue.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
psymtab.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
psymtab1.c
psymtab2.c
ptr-typedef.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ptr-typedef.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
ptype.c
ptype.exp gdb: Use UNSUPPORTED not XFAIL for unsupported target features 2016-06-13 15:26:26 +01:00
ptype1.c
radix.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
random-signal.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
random-signal.exp Test gdb.base/random-signal.exp with "attach" 2016-01-12 12:30:33 +00:00
randomize.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
randomize.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
range-stepping.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
range-stepping.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
readline-ask.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
readline-ask.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
readline-ask.inputrc GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
readline.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
realname-expand-real.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
realname-expand.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
realname-expand.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
recpar.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
recpar.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
recurse.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
recurse.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
relational.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
relativedebug.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
relativedebug.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
relocate.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
relocate.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
remote.c
remote.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
remotetimeout.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
reread.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
reread1.c
reread2.c
restore.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
restore.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
return-nodebug.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
return-nodebug.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
return-nodebug1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
return.c Add copyright header in gdb.base/return.c 2016-06-29 17:33:19 +01:00
return.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
return2.c
return2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
run-after-attach.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
run-after-attach.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
run.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
save-bp.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
save-bp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
savedregs.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
savedregs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
scope.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +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 GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
segv.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sep-proc.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sep.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sep.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sepdebug.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sepdebug.exp Per-inferior/Inferior-qualified thread IDs 2016-01-13 10:59:43 +00:00
sepdebug2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sepsymtab.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sepsymtab.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
set-lang-auto.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
set-noassign.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
setshow.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
setshow.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
setvar.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
setvar.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
shell.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
shlib-call.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -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 Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09: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 GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigaltstack.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigaltstack.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigbpt.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigbpt.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigchld.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigchld.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-addr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-addr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-infcall.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-infcall.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-obj.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-obj.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-thread.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo-thread.exp Fix PR threads/19422 - show which thread caused stop 2016-01-18 15:15:18 +00:00
siginfo.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
siginfo.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
signals.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
signals.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
signest.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
signest.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
signull.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
signull.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigrepeat.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigrepeat.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigstep.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sigstep.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sizeof.c Run gdb.base/sizeof.exp with board having gdb,noinferiorio 2015-12-03 17:12:41 +00:00
sizeof.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +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 Extend "skip" command to support -file, -gfile, -function, -rfunction. 2016-02-23 13:25:18 -08:00
skip.c Remove hand-called function from test. 2016-03-15 12:44:34 -07:00
skip.exp Remove hand-called function from test. 2016-03-15 12:44:34 -07:00
skip1.c Extend "skip" command to support -file, -gfile, -function, -rfunction. 2016-02-23 13:25:18 -08:00
so-disc-shr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
so-impl-ld.c
so-impl-ld.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
solib-corrupted.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-disc.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-disc.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
solib-display-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-display-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-display.exp Fix solib-display.exp remote check 2016-05-04 09:29:28 -04:00
solib-nodir.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
solib-overlap-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-overlap-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-overlap.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
solib-search-lib1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-search-lib2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-search.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-search.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-search.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-symbol-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-symbol-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-symbol.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
solib-weak.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
solib-weak.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
solib1.c Remove HP-UX references fom testsuite 2015-12-21 12:51:54 -05:00
source-dir.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
source-error.gdb GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
source-execution.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
source-execution.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
source-execution.gdb GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
source-nofile.gdb GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
source-test.gdb GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
source.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
spu.ld
ss.h
sss-bp-on-user-bp-2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sss-bp-on-user-bp-2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sss-bp-on-user-bp.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sss-bp-on-user-bp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
stack-checking.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
stack-checking.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
stale-infcall.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
stale-infcall.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
stap-probe.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
stap-probe.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
start.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
start.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
statistics.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-break.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-break.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-bt.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-bt.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-line.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-line.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-line.inp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-over-clone.c New test about step over clone syscall 2016-03-03 09:17:45 +00:00
step-over-exit.c Step over exit with reinsert breakpoints 2016-06-17 10:38:55 +01:00
step-over-exit.exp Step over exit with reinsert breakpoints 2016-06-17 10:38:55 +01:00
step-over-fork.c Rename disp-step-syscall.exp to step-over-syscall.exp 2016-03-03 09:17:45 +00:00
step-over-no-symbols.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-over-syscall.exp Extend step-over-syscall.exp with different detach-on-fork and follow-fork modes 2016-06-17 10:38:55 +01:00
step-over-vfork.c Rename disp-step-syscall.exp to step-over-syscall.exp 2016-03-03 09:17:45 +00:00
step-resume-infcall.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-resume-infcall.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-sw-breakpoint-adjust-pc.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-sw-breakpoint-adjust-pc.exp Move foreach_with_prefix to lib/gdb.exp 2016-01-25 13:15:11 +00:00
step-symless.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-symless.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
step-test.c
step-test.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
store.c
store.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
structs.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
structs.exp gdb: Use UNSUPPORTED not XFAIL for unsupported target features 2016-06-13 15:26:26 +01:00
structs2.c
structs2.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
structs3.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
structs3.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
subst.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +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 GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sym-file-loader.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sym-file-loader.h GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sym-file-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
sym-file.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
symbol-without-target_section.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
symbol-without-target_section.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
symtab-search-order-1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
symtab-search-order-shlib-1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
symtab-search-order.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
symtab-search-order.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
term.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
term.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
testenv.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
testenv.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
trace-commands.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
tui-layout.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
twice.c
twice.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
type-opaque-lib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
type-opaque-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
type-opaque.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
ui-redirect.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
unload.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
unload.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
unloadshr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
unloadshr2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
until-nodebug.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
until.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
unwindonsignal.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
unwindonsignal.exp gdb: Use UNSUPPORTED not XFAIL for unsupported target features 2016-06-13 15:26:26 +01:00
valgrind-db-attach.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
valgrind-db-attach.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
valgrind-disp-step.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
valgrind-disp-step.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
valgrind-infcall.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
valgrind-infcall.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
value-double-free.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
value-double-free.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
varargs.c Unbuffer all tests that rely on stdio 2015-07-29 11:09:45 +01:00
varargs.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vdso-warning.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vdso-warning.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vforked-prog.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-datatypes.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-datatypes.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-ptr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-ptr.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-sideeffect.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-sideeffect.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-stub-define.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-stub.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
vla-stub.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
volatile.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-bitfields.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-bitfields.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-cond-infcall.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-cond-infcall.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-cond.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-cond.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-non-mem.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-non-mem.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-read.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-read.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-vfork.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch-vfork.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch_thread_num.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watch_thread_num.exp Per-inferior/Inferior-qualified thread IDs 2016-01-13 10:59:43 +00:00
watchpoint-cond-gone-stripped.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-cond-gone.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-cond-gone.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-delete.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-delete.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-hw-hit-once.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-hw-hit-once.exp Fix PR threads/19422 - show which thread caused stop 2016-01-18 15:15:18 +00:00
watchpoint-hw.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-hw.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-reuse-slot.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-reuse-slot.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-solib-shr.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-solib.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-solib.exp Rename gdb_load_shlibs to gdb_load_shlib 2016-04-27 18:09:14 -04:00
watchpoint-stops-at-right-insn.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint-stops-at-right-insn.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoint.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
watchpoint.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoints.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
watchpoints.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
wchar.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
wchar.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
weaklib1.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
weaklib2.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
whatis-exp.exp GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
whatis.c gdb: Forward VALUE_LVAL when avoiding side effects for STRUCTOP_PTR 2016-05-27 13:06:25 +01:00
whatis.exp gdb: Forward VALUE_LVAL when avoiding side effects for STRUCTOP_PTR 2016-05-27 13:06:25 +01:00
wrong_frame_bt_full-main.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
wrong_frame_bt_full-opaque.c GDB copyright headers update after running GDB's copyright.py script. 2016-01-01 08:43:22 +04:00
wrong_frame_bt_full.exp testsuite: Fix some tests that write outside of the standard output directory 2016-02-15 11:46:10 -05:00