binutils-gdb/gdb/testsuite/gdb.base
Sergio Durigan Junior 458c8db89f Partial fix for PR breakpoints/10737: Make syscall info be per-arch instead of global
This patch intends to partially fix PR breakpoints/10737, which is
about making the syscall information (for the "catch syscall" command)
be per-arch, instead of global.  This is not a full fix because of the
other issues pointed by Pedro here:

  <https://sourceware.org/bugzilla/show_bug.cgi?id=10737#c5>

However, I consider it a good step towards the real fix.  It will also
help me fix <https://sourceware.org/bugzilla/show_bug.cgi?id=17402>.

What this patch does, basically, is move the "syscalls_info"
struct to gdbarch.  Currently, the syscall information is stored in a
global variable inside gdb/xml-syscall.c, which means that there is no
easy way to correlate this info with the current target or
architecture being used, for example.  This causes strange behaviors,
because the syscall info is not re-read when the arch changes.  For
example, if you put a syscall catchpoint in syscall 5 on i386 (syscall
open), and then load a x86_64 program on GDB and put the same syscall
5 there (fstat on x86_64), you will still see that GDB tells you that
it is catching "open", even though it is not.  With this patch, GDB
correctly says that it will be catching fstat syscalls.

  (gdb) set architecture i386
  The target architecture is assumed to be i386
  (gdb) catch syscall 5
  Catchpoint 1 (syscall 'open' [5])
  (gdb) set architecture i386:x86-64
  The target architecture is assumed to be i386:x86-64
  (gdb) catch syscall 5
  Catchpoint 2 (syscall 'open' [5])

But with the patch:

  (gdb) set architecture i386
  The target architecture is assumed to be i386
  (gdb) catch syscall 5
  Catchpoint 1 (syscall 'open' [5])
  (gdb) set architecture i386:x86-64
  The target architecture is assumed to be i386:x86-64
  (gdb) catch syscall 5
  Catchpoint 2 (syscall 'fstat' [5])

As I said, there are still some problems on the "catch syscall"
mechanism, because (for example) the user should be able to "catch
syscall open" on i386, and then expect "open" to be caught also on
x86_64.  Currently, it doesn't work.  I intend to work on this later.

gdb/
2014-11-20  Sergio Durigan Junior  <sergiodj@redhat.com>

	PR breakpoints/10737
	* amd64-linux-tdep.c (amd64_linux_init_abi_common): Adjust call to
	set_xml_syscall_file_name to provide gdbarch.
	* arm-linux-tdep.c (arm_linux_init_abi): Likewise.
	* bfin-linux-tdep.c (bfin_linux_init_abi): Likewise.
	* breakpoint.c (print_it_catch_syscall): Adjust call to
	get_syscall_by_number to provide gdbarch.
	(print_one_catch_syscall): Likewise.
	(print_mention_catch_syscall): Likewise.
	(print_recreate_catch_syscall): Likewise.
	(catch_syscall_split_args): Adjust calls to get_syscall_by_number
	and get_syscall_by_name to provide gdbarch.
	(catch_syscall_completer): Adjust call to get_syscall_names to
	provide gdbarch.
	* gdbarch.c: Regenerate.
	* gdbarch.h: Likewise.
	* gdbarch.sh: Forward declare "struct syscalls_info".
	(xml_syscall_file): New variable.
	(syscalls_info): Likewise.
	* i386-linux-tdep.c (i386_linux_init_abi): Adjust call to
	set_xml_syscall_file_name to provide gdbarch.
	* mips-linux-tdep.c (mips_linux_init_abi): Likewise.
	* ppc-linux-tdep.c (ppc_linux_init_abi): Likewise.
	* s390-linux-tdep.c (s390_gdbarch_init): Likewise.
	* sparc-linux-tdep.c (sparc32_linux_init_abi): Likewise.
	* sparc64-linux-tdep.c (sparc64_linux_init_abi): Likewise.
	* xml-syscall.c: Include gdbarch.h.
	(set_xml_syscall_file_name): Accept gdbarch parameter.
	(get_syscall_by_number): Likewise.
	(get_syscall_by_name): Likewise.
	(get_syscall_names): Likewise.
	(my_gdb_datadir): Delete global variable.
	(struct syscalls_info) <my_gdb_datadir>: New variable.
	(struct syscalls_info) <sysinfo>: Rename variable to
	"syscalls_info".
	(sysinfo): Delete global variable.
	(have_initialized_sysinfo): Likewise.
	(xml_syscall_file): Likewise.
	(sysinfo_free_syscalls_desc): Rename to...
	(syscalls_info_free_syscalls_desc): ... this.
	(free_syscalls_info): Rename "sysinfo" to "syscalls_info".  Adjust
	code to the new layout of "struct syscalls_info".
	(make_cleanup_free_syscalls_info): Rename parameter "sysinfo" to
	"syscalls_info".
	(syscall_create_syscall_desc): Likewise.
	(syscall_start_syscall): Likewise.
	(syscall_parse_xml): Likewise.
	(xml_init_syscalls_info): Likewise.  Drop "const" from return value.
	(init_sysinfo): Rename to...
	(init_syscalls_info): ...this.  Add gdbarch as a parameter.
	Adjust function to deal with gdbarch.
	(xml_get_syscall_number): Delete parameter sysinfo.  Accept
	gdbarch as a parameter.  Adjust code.
	(xml_get_syscall_name): Likewise.
	(xml_list_of_syscalls): Likewise.
	(set_xml_syscall_file_name): Accept gdbarch as parameter.
	(get_syscall_by_number): Likewise.
	(get_syscall_by_name): Likewise.
	(get_syscall_names): Likewise.
	* xml-syscall.h (set_xml_syscall_file_name): Likewise.
	(get_syscall_by_number): Likewise.
	(get_syscall_by_name): Likewise.
	(get_syscall_names): Likewise.

gdb/testsuite/
2014-11-20  Sergio Durigan Junior  <sergiodj@redhat.com>

	PR breakpoints/10737
	* gdb.base/catch-syscall.exp (do_syscall_tests): Call
	test_catch_syscall_multi_arch.
	(test_catch_syscall_multi_arch): New function.
2014-11-20 12:28:18 -05:00
..
comp-dir/subdir
Makefile.in * gdb.base/Makefile.in (EXECUTABLES): Add completion. 2014-05-16 12:34:05 -07:00
a2-run.exp Remove support for testing against dead "target vxworks" 2014-09-16 12:37:03 +01:00
advance.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
advance.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
alias.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
all-bin.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
all-types.c
annota-input-while-running.c PR gdb/17472: With annotations, input while executing in the foreground crashes readline/GDB 2014-10-17 13:32:26 +01:00
annota-input-while-running.exp PR gdb/17472: With annotations, input while executing in the foreground crashes readline/GDB 2014-10-17 13:32:26 +01:00
annota1.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
annota1.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
annota3.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
annota3.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
anon.c
anon.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
args.c
args.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
argv0-symlink.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
argv0-symlink.exp Skip testing argv[0] on target argv[0] isn't available 2014-10-18 20:58:06 +08:00
arithmet.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
arrayidx.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
arrayidx.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
assign.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
async-shell.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
async-shell.exp enable target async by default; separate MI and target notions of async 2014-05-29 14:38:02 +01:00
async.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
async.exp Tweak gdb.base/async.exp 2014-06-06 21:43:20 +08:00
attach-pie-misread.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
attach-pie-misread.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
attach-pie-noexec.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
attach-pie-noexec.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
attach-twice.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
attach-twice.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
attach-wait-input.c Fix "attach" command vs user input race 2014-07-09 15:59:02 +01:00
attach-wait-input.exp Fix "attach" command vs user input race 2014-07-09 15:59:02 +01:00
attach.c testsuite: Fix runaway attach processes 2014-09-12 13:39:04 +02:00
attach.exp testsuite: Fix runaway attach processes 2014-09-12 13:39:04 +02:00
attach2.c
auto-connect-native-target.c Allow making GDB not automatically connect to the native target. 2014-05-21 18:30:47 +01:00
auto-connect-native-target.exp Fix a regexp pattern in gdb.base/auto-connect-native-target.exp 2014-06-04 13:30:44 +08:00
auto-load-script PR gdb/16626 2014-02-25 18:32:32 +01:00
auto-load.c PR gdb/16626 2014-02-25 18:32:32 +01:00
auto-load.exp PR gdb/16626 2014-02-25 20:47:09 +01:00
auxv.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
auxv.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
average.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
bang.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bar.c
baz.c
bfp-test.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bfp-test.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bg-execution-repeat.c PR gdb/17471: Repeating a background command makes it foreground 2014-10-17 13:34:16 +01:00
bg-execution-repeat.exp PR gdb/17471: Repeating a background command makes it foreground 2014-10-17 13:34:16 +01:00
bigcore.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bigcore.exp Delete IRIX support 2014-10-10 18:18:52 +01:00
bitfields.c gdb/: 2013-02-11 18:05:35 +00:00
bitfields.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bitfields2.c
bitfields2.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bitops.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
bp-permanent.c Use 2-byte instead of 4-byte NOP on S390 in 'bp-permanent' test case 2014-11-19 10:03:32 +01:00
bp-permanent.exp fix skipping permanent breakpoints 2014-11-12 10:39:00 +00:00
branches.c
break-always.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-always.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-caller-line.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-caller-line.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-entry.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-idempotent.c [GDBserver] Make Zx/zx packet handling idempotent. 2014-05-20 18:42:30 +01:00
break-idempotent.exp [GDBserver] Make Zx/zx packet handling idempotent. 2014-05-20 18:42:30 +01:00
break-inline.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-inline.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-interp-lib.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
break-interp-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-interp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-main-file-remove-fail.c "$ gdb PROGRAM" vs "(gdb) file PROGRAM" difference; warn on failure to remove breakpoint. 2014-06-16 15:38:13 +01:00
break-main-file-remove-fail.exp "$ gdb PROGRAM" vs "(gdb) file PROGRAM" difference; warn on failure to remove breakpoint. 2014-06-16 15:38:13 +01:00
break-on-linker-gcd-function.cc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-on-linker-gcd-function.exp Check function is GC'ed 2014-09-19 16:53:27 +08:00
break-probes-solib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-probes.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-probes.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
break-unload-file.c Stale breakpoint instructions, spurious SIGTRAPS. 2014-04-23 15:09:27 +01:00
break-unload-file.exp "$ gdb PROGRAM" vs "(gdb) file PROGRAM" difference; warn on failure to remove breakpoint. 2014-06-16 15:38:13 +01:00
break.c Drop non-prototype C function header variants: 'break' test case 2014-11-13 10:20:42 +01:00
break.exp Drop non-prototype C function header variants: 'break' test case 2014-11-13 10:20:42 +01:00
break1.c Drop non-prototype C function header variants: 'break' test case 2014-11-13 10:20:42 +01:00
breakpoint-in-ro-region.c Put single-step breakpoints on the bp_location chain 2014-10-15 20:18:31 +01:00
breakpoint-in-ro-region.exp Put single-step breakpoints on the bp_location chain 2014-10-15 20:18:31 +01:00
breakpoint-shadow.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
breakpoint-shadow.exp PR gdb/16575: stale breakpoint instructions in the code cache 2014-03-05 14:18:28 +00:00
call-ar-st.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
call-ar-st.exp Eliminate literal line numbers in call-ar-st.exp 2014-11-13 10:14:30 +01:00
call-rt-st.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
call-rt-st.exp Eliminate literal line numbers in call-rt-st.exp 2014-11-13 10:14:30 +01:00
call-sc.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
call-sc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
call-signal-resume.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
call-signals.c Remove preprocessor conditionals for ANSI-standard signals 2014-06-06 10:32:12 +01:00
call-strs.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
call-strs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
callexit.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
callexit.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
callfuncs.c 'callfuncs' test case: Fixes in conditionally compiled code 2014-11-13 10:20:40 +01:00
callfuncs.exp callfuncs.exp: Indent perform_all_tests() 2014-11-13 10:20:41 +01:00
catch-load-so.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
catch-load.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
catch-load.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
catch-signal-fork.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
catch-signal-fork.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
catch-signal.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
catch-signal.exp Fix "save breakpoints" for "catch" command 2014-10-13 13:39:48 +02:00
catch-syscall.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
catch-syscall.exp Partial fix for PR breakpoints/10737: Make syscall info be per-arch instead of global 2014-11-20 12:28:18 -05:00
charset-malloc.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
charset.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
charset.exp after gdb_run_cmd, gdb_expect -> gdb_test_multiple/gdb_test 2014-09-12 22:16:31 +01:00
checkpoint.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
checkpoint.exp Don't remove files copied to host 2014-10-20 13:34:28 +08:00
chng-syms.c
chng-syms.exp after gdb_run_cmd, gdb_expect -> gdb_test_multiple/gdb_test 2014-09-12 22:16:31 +01:00
code-expr.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
code_elim.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
code_elim1.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
code_elim2.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
commands.exp Don't check target_info exists noargs in commands.exp 2014-10-17 13:04:34 +08:00
compare-sections.c Make compare-sections work against all targets; add compare-sections [-r] tests. 2014-05-20 19:11:39 +01:00
compare-sections.exp Make compare-sections work against all targets; add compare-sections [-r] tests. 2014-05-20 19:11:39 +01:00
completion.exp don't use directory in test name 2014-06-12 12:09:21 -06:00
complex.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
complex.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
comprdebug.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cond-eval-mode.c Conditional Z1 breakpoint hangs GDBserver. 2014-04-10 17:14:12 +01:00
cond-eval-mode.exp Fix several "set remote foo-packet on/off" commands. 2014-04-25 18:07:02 +01:00
cond-expr.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
condbreak-call-false.c make dprintf.exp pass in target async mode 2014-03-20 17:49:51 +00:00
condbreak-call-false.exp make dprintf.exp pass in target async mode 2014-03-20 17:49:51 +00:00
condbreak.exp Drop remaining references to removed source lines in break1.c and ur1.c 2014-11-17 10:26:30 +01:00
consecutive-step-over.c Consecutive step-overs trigger internal error. 2014-04-22 19:21:16 +01:00
consecutive-step-over.exp Consecutive step-overs trigger internal error. 2014-04-22 19:21:16 +01:00
consecutive.c
consecutive.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
constvars.c Handle volatile array types in dwarf2read.c. 2014-07-01 22:11:53 +02:00
constvars.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
continue-all-already-running.c PR gdb/17300: Input after "c -a" crashes readline/GDB 2014-10-17 13:33:30 +01:00
continue-all-already-running.exp PR gdb/17300: Input after "c -a" crashes readline/GDB 2014-10-17 13:33:30 +01:00
corefile.exp Remove Vax Ultrix and VAX BSD support 2014-10-24 17:56:56 +01:00
coremaker.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
coremaker2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ctxobj-f.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ctxobj-m.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ctxobj-v.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ctxobj.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cursal.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cursal.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cvexpr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
cvexpr.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
d10v.ld
d10vovly.c
dbx.exp Eliminate literal line numbers in dbx.exp 2014-11-13 10:14:29 +01:00
dcache-line-read-error.c Make the dcache (code/stack cache) handle line reading errors better 2014-05-21 13:58:16 +01:00
dcache-line-read-error.exp Make the dcache (code/stack cache) handle line reading errors better 2014-05-21 13:58:16 +01:00
debug-expr.c
debug-expr.exp Add test for string evaluation with "debug expression" on 2014-07-16 12:43:11 -04:00
default.exp Remove support for testing against dead "target vxworks" 2014-09-16 12:37:03 +01:00
define.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
del.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
del.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
detach.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dfp-exprs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dfp-test.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dfp-test.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disabled-location.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disabled-location.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disasm-end-cu-1.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disasm-end-cu-2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disasm-end-cu.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disp-step-fork.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disp-step-syscall.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
disp-step-vfork.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
display.c
display.exp Remove duplicated code on checking address 0x0 is accessiable 2014-08-09 08:46:32 +08:00
dmsym.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dmsym.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dmsym_main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
double-prompt-target-event-error.c Fix double prompt 2014-07-14 20:34:23 +01:00
double-prompt-target-event-error.exp Fix paginate-*.exp races 2014-07-25 10:07:38 +01:00
dprintf-bp-same-addr.c Installing a breakpoint on top of a dprintf makes GDB lose control. 2014-06-02 23:29:13 +01:00
dprintf-bp-same-addr.exp Installing a breakpoint on top of a dprintf makes GDB lose control. 2014-06-02 23:29:13 +01:00
dprintf-next.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dprintf-next.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dprintf-non-stop.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
dprintf-non-stop.exp enable target async by default; separate MI and target notions of async 2014-05-29 14:38:02 +01:00
dprintf-pending.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dprintf-pending.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dprintf-pendshr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dprintf.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dprintf.exp Fix several "set remote foo-packet on/off" commands. 2014-04-25 18:07:02 +01:00
dump.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
dump.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dup-sect.S Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
dup-sect.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
duplicate-bp.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
duplicate-bp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
echo.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
empty_exe.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ena-dis-br.exp Drop remaining references to removed source lines in break1.c and ur1.c 2014-11-17 10:26:30 +01:00
ending-run.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
ending-run.exp Eliminate literal line numbers in ending-run.exp 2014-11-13 10:20:37 +01:00
enum_cond.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
enum_cond.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
enumval.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
enumval.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
environ.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
eu-strip-infcall.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
eu-strip-infcall.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
eval-avoid-side-effects.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
eval-skip.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
eval.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
exe-lock.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +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 PR17431: following execs with "breakpoint always-inserted on" 2014-10-02 10:05:46 +01:00
execl-update-breakpoints.exp PR17431: following execs with "breakpoint always-inserted on" 2014-10-02 10:05:46 +01:00
execution-termios.c Put the inferior's terminal settings in effect while running (fg) infcalls 2014-07-14 19:55:30 +01:00
execution-termios.exp Put the inferior's terminal settings in effect while running (fg) infcalls 2014-07-14 19:55:30 +01:00
exitsignal.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
expand-psymtabs.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
expand-psymtabs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
exprs.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
exprs.exp Don't print symbol on address 0x0 2014-07-11 19:05:50 +08:00
fileio.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
fileio.exp Prepare directory in case test_system fails 2014-10-29 21:43:05 +08:00
filesym.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
filesym.exp Skip tests on completion and readline when readline lib isn't used 2014-03-26 21:11:08 +08:00
find-unmapped.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
find-unmapped.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
find.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
find.exp after gdb_run_cmd, gdb_expect -> gdb_test_multiple/gdb_test 2014-09-12 22:16:31 +01:00
finish.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fixsection.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fixsection.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fixsectshr.c
float.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
float.exp AArch64: gdb.base/float.exp: Fix `info float' test 2014-01-15 22:17:53 +00:00
foll-exec.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
foll-exec.exp Eliminate literal line numbers in foll-exec.exp 2014-11-13 10:20:38 +01:00
foll-fork.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
foll-fork.exp Follow-fork message printing improvements 2014-10-24 11:36:06 -07:00
foll-vfork-exit.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
foll-vfork.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
foll-vfork.exp Follow-fork message printing improvements 2014-10-24 11:36:06 -07:00
foo.c
fortran-sym-case.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fortran-sym-case.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
frame-args.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
frame-args.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
freebpcmd.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
freebpcmd.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fullname.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fullname.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fullpath-expand-func.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fullpath-expand.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
fullpath-expand.exp Skip tests that use cd for remote hosts 2014-10-30 09:48:10 -02:00
func-ptr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
func-ptr.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
funcargs.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
funcargs.exp Delete IRIX support 2014-10-10 18:18:52 +01:00
gcore-buffer-overflow.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gcore-buffer-overflow.exp Remove useless gcore command detection 2014-08-21 11:36:59 +01:00
gcore-relro-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gcore-relro-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gcore-relro-pie.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gcore-relro-pie.exp Remove useless gcore command detection 2014-08-21 11:36:59 +01:00
gcore-relro.exp Remove useless gcore command detection 2014-08-21 11:36:59 +01:00
gcore.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
gcore.exp Remove useless gcore command detection 2014-08-21 11:36:59 +01:00
gdb-sigterm.c Fix SIGTERM signal safety (PR gdb/15358). 2014-03-18 22:48:06 +01:00
gdb-sigterm.exp enable target async by default; separate MI and target notions of async 2014-05-29 14:38:02 +01:00
gdb1056.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1090.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1090.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1250.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1250.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1555-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1555.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1555.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1821.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb1821.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb11530.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb11530.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb11531.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb11531.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdb_history
gdbindex-stabs-dwarf.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdbindex-stabs.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gdbindex-stabs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +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 Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
global-var-nested-by-dso-solib1.c Add test for global variable that is nested by another DSO 2014-09-16 22:57:06 -04:00
global-var-nested-by-dso-solib2.c Add test for global variable that is nested by another DSO 2014-09-16 22:57:06 -04:00
global-var-nested-by-dso.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
global-var-nested-by-dso.exp Add test for global variable that is nested by another DSO 2014-09-16 22:57:06 -04:00
gnu-debugdata.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gnu-debugdata.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gnu-ifunc-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gnu-ifunc.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gnu-ifunc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gnu_vector.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
gnu_vector.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
grbx.c
hashline1.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hashline2.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hashline3.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hbreak-in-shr-unsupported-shr.c Don't suppress errors inserting/removing hardware breakpoints in shared 2014-04-23 15:06:47 +01:00
hbreak-in-shr-unsupported.c Don't suppress errors inserting/removing hardware breakpoints in shared 2014-04-23 15:06:47 +01:00
hbreak-in-shr-unsupported.exp Don't suppress errors inserting/removing hardware breakpoints in shared 2014-04-23 15:06:47 +01:00
hbreak-unmapped.c Don't suppress errors inserting/removing hardware breakpoints in shared 2014-04-23 15:06:47 +01:00
hbreak-unmapped.exp Remove duplicated code on checking address 0x0 is accessiable 2014-08-09 08:46:32 +08:00
hbreak.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hbreak.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hbreak2.exp Drop remaining references to removed source lines in break1.c and ur1.c 2014-11-17 10:26:30 +01:00
help.exp Add Guile as an extension language. 2014-02-09 19:40:01 -08:00
hook-stop-continue.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hook-stop-continue.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hook-stop-frame.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
hook-stop-frame.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
huge.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
huge.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ifelse.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
included.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
included.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
included.h Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
inferior-died.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
inferior-died.exp enable target async by default; separate MI and target notions of async 2014-05-29 14:38:02 +01:00
infnan.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
infnan.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-fun-solib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-fun.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-fun.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-macros.c
info-macros.exp Prevent appending "-g" after "-g3" to compile options in info-macros.exp. 2014-01-22 17:02:13 +01:00
info-os.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
info-os.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-proc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-shared-solib1.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-shared-solib2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-shared.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
info-shared.exp Fix info-shared.exp testcase to expect the leading `.' found on ppc64's symbols. 2014-01-28 15:31:23 -02:00
info-target.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
infoline.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
infoline.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
int-type.c
interact.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
interp.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
interp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
interrupt-noterm.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
interrupt-noterm.exp enable target async by default; separate MI and target notions of async 2014-05-29 14:38:02 +01:00
interrupt.c
interrupt.exp Remove Vax Ultrix and VAX BSD support 2014-10-24 17:56:56 +01:00
jit-dlmain.c
jit-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
jit-simple.c
jit-simple.exp after gdb_run_cmd, gdb_expect -> gdb_test_multiple/gdb_test 2014-09-12 22:16:31 +01:00
jit-so.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
jit-solib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
jit.exp Restrict the pattern in gdb.base/jit.exp 2014-06-06 21:43:26 +08:00
jump.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
jump.exp Eliminate literal line numbers in jump.exp 2014-11-13 10:20:38 +01:00
kill-after-signal.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
kill-after-signal.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
label.c
label.exp XFAIL under Clang tests using labels 2014-04-24 20:20:46 -07:00
langs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
langs0.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
langs1.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
langs1.f Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
langs2.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
langs2.cxx
ldbl_e308.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ldbl_e308.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
line-symtabs.c PR symtab/17559 2014-11-15 10:08:34 -08:00
line-symtabs.exp PR symtab/17559 2014-11-15 10:08:34 -08:00
line-symtabs.h PR symtab/17559 2014-11-15 10:08:34 -08:00
lineinc.c
lineinc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
lineinc1.h
lineinc2.h
lineinc3.h
linespecs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
list.exp PR gdb/13860: make -interpreter-exec console "list" behave more like "list". 2014-05-21 23:15:27 +01: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 Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
long_long.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
long_long.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
longest-types.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
longest-types.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
longjmp.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
longjmp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
m32r.ld
m32rovly.c
macscp.exp Skip tests on completion and readline when readline lib isn't used 2014-03-26 21:11:08 +08:00
macscp1.c
macscp2.h
macscp3.h
macscp4.h
maint.exp Split struct symtab into two: struct symtab and compunit_symtab. 2014-11-20 07:47:44 -08:00
memattr.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
memattr.exp gdb.base/memattr.exp regexp improvements. 2014-04-16 17:42:29 +01:00
mips_pro.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
mips_pro.exp Delete IRIX support 2014-10-10 18:18:52 +01:00
miscexprs.c
miscexprs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
morestack.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
morestack.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
moribund-step.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
multi-forks.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
multi-forks.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
multi-line-starts-subshell.exp PR python/17372 - Python hangs when displaying help() 2014-10-29 17:29:26 +00:00
nextoverexit.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nextoverexit.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nodebug.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
nodebug.exp Delete IRIX support 2014-10-10 18:18:52 +01:00
nofield.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nofield.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
normal.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nostdlib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
nostdlib.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
opaque.exp Delete IRIX support 2014-10-10 18:18:52 +01:00
opaque0.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
opaque1.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
overlays.c
overlays.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ovlymgr.c
ovlymgr.h
page.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
paginate-after-ctrl-c-running.c Put GDB's terminal settings into effect when paginating 2014-07-14 20:35:31 +01:00
paginate-after-ctrl-c-running.exp Fix paginate-*.exp races 2014-07-25 10:07:38 +01:00
paginate-bg-execution.c Background execution + pagination aborts readline/gdb 2014-07-14 20:32:13 +01:00
paginate-bg-execution.exp Fix paginate-*.exp races 2014-07-25 10:07:38 +01:00
paginate-execution-startup.c Canceling pagination caused by execution command from command line aborts readline/gdb 2014-07-14 20:31:04 +01:00
paginate-execution-startup.exp Fix paginate-*.exp races 2014-07-25 10:07:38 +01:00
paginate-inferior-exit.c Remove the target from the event loop while in secondary prompts 2014-07-14 20:33:16 +01:00
paginate-inferior-exit.exp Fix paginate-*.exp races 2014-07-25 10:07:38 +01:00
pc-fp.c
pc-fp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pending.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pending.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pendshr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
permissions.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pi.txt
pie-execl.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pie-execl.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pointers.c
pointers.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr10179-a.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
pr10179-b.c
pr10179.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr11022.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
pr11022.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
prelink-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
prelink.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
prelink.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
print-file-var-lib1.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
print-file-var-lib2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
print-file-var-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
print-file-var.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
print-symbol-loading-lib.c New option "set print symbol-loading". 2014-03-31 12:07:48 -07:00
print-symbol-loading-main.c New option "set print symbol-loading". 2014-03-31 12:07:48 -07:00
print-symbol-loading.exp Remove useless gcore command detection 2014-08-21 11:36:59 +01:00
printcmds.c * gdb.base/callfuncs.c (main): Assign malloc's return value 2013-11-27 10:39:26 -02:00
printcmds.exp [testsuite] Set target-charset to ascii 2014-04-17 10:33:19 +08:00
prologue-include.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
prologue-include.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
prologue-include.h Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
prologue.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
prologue.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
psymtab.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
psymtab1.c
psymtab2.c
ptr-typedef.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ptr-typedef.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ptype.c
ptype.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ptype1.c
radix.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
random-signal.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
random-signal.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
randomize.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
randomize.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
range-stepping.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
range-stepping.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
readline-ask.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
readline-ask.exp Skip tests on completion and readline when readline lib isn't used 2014-03-26 21:11:08 +08:00
readline-ask.inputrc Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
readline.exp Skip tests on completion and readline when readline lib isn't used 2014-03-26 21:11:08 +08:00
realname-expand-real.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
realname-expand.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
realname-expand.exp Skip tests that use cd for remote hosts 2014-10-30 09:48:10 -02:00
recpar.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
recpar.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
recurse.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
recurse.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
relational.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
relativedebug.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
relativedebug.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
relocate.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
relocate.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
remote.c
remote.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
remotetimeout.exp Don't check noargs in remotetimeout.exp 2014-10-16 12:55:01 +08:00
reread.exp after gdb_run_cmd, gdb_expect -> gdb_test_multiple/gdb_test 2014-09-12 22:16:31 +01:00
reread1.c
reread2.c
restore.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
restore.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
return-nodebug.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
return-nodebug.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
return-nodebug1.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
return.c
return.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
return2.c
return2.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
run.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
save-bp.c Fix "save breakpoints" for "disable $bpnum" command. 2014-10-12 21:52:39 +02:00
save-bp.exp Fix "save breakpoints" for "disable $bpnum" command. 2014-10-12 21:52:39 +02:00
savedregs.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
savedregs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
scope.exp Remove support for testing against dead "target vxworks" 2014-09-16 12:37:03 +01:00
scope0.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
scope1.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
sect-cmd.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
segv.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sep-proc.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sep.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sep.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sepdebug.c Drop non-prototype C function header variants: 'sepdebug' test case 2014-11-13 10:20:43 +01:00
sepdebug.exp Drop non-prototype C function header variants: 'sepdebug' test case 2014-11-13 10:20:43 +01:00
sepdebug2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sepsymtab.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sepsymtab.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
set-lang-auto.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
set-noassign.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
setshow.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
setshow.exp Escape backslash in windows path 2014-04-03 14:51:40 +08:00
setvar.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
setvar.exp Delete IRIX support 2014-10-10 18:18:52 +01:00
shell.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
shlib-call.exp Eliminate literal line numbers in shlib-call.exp 2014-11-13 10:20:39 +01:00
shmain.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
shr1.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
shr2.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
shreloc.c
shreloc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +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 Delete Tru64 support 2014-10-17 11:18:59 +01:00
sigaltstack.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
sigaltstack.exp update bug numbers (GNATS -> Bugzilla) in a few signal related tests 2014-10-28 15:31:55 +00:00
sigbpt.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sigbpt.exp update bug numbers (GNATS -> Bugzilla) in a few signal related tests 2014-10-28 15:31:55 +00:00
sigchld.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sigchld.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-addr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-addr.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-infcall.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-infcall.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-obj.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-obj.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-thread.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo-thread.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
siginfo.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
siginfo.exp update bug numbers (GNATS -> Bugzilla) in a few signal related tests 2014-10-28 15:31:55 +00:00
signals.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
signals.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
signest.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
signest.exp Remove duplicated code on checking address 0x0 is accessiable 2014-08-09 08:46:32 +08:00
signull.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
signull.exp Remove duplicated code on checking address 0x0 is accessiable 2014-08-09 08:46:32 +08:00
sigrepeat.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sigrepeat.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
sigstep.c PR gdb/12623: non-stop crashes inferior, PC adjustment and 1-byte insns 2014-10-28 16:00:06 +00:00
sigstep.exp gdb.base/sigstep.exp: xfail gdb/17511 on i?86 Linux 2014-11-07 15:20:47 +00:00
sizeof.c
sizeof.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
skip-solib-lib.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
skip-solib-main.c
skip-solib.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
skip.c testsuite/gdb.base: Make skip test use defined behaviour. 2013-06-18 18:16:16 +00:00
skip.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +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 Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
so-impl-ld.c
so-impl-ld.exp Eliminate literal line numbers in so-impl-ld.exp 2014-11-13 10:14:29 +01: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 Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-corrupted.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-disc.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-disc.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-display-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-display-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-display.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-nodir.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-overlap-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-overlap-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-overlap.exp testsuite: refactor spawn and wait for attach 2014-09-11 13:04:14 +01:00
solib-search-lib1.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-search-lib2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-search.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-search.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-search.h Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-symbol-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-symbol-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-symbol.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib-weak.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
solib-weak.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
solib.c
solib.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +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 Allow ';' as a directory separator 2014-03-31 15:00:28 +08:00
source-error.gdb Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
source-execution.c "source", foreground execution commands, and target-async 2014-03-25 11:45:53 +00:00
source-execution.exp "source", foreground execution commands, and target-async 2014-03-25 11:45:53 +00:00
source-execution.gdb "source", foreground execution commands, and target-async 2014-03-25 11:45:53 +00:00
source-nofile.gdb Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
source-test.gdb Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
source.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
spu.ld
ss.h
sss-bp-on-user-bp-2.c PR breakpoints/17000: user breakpoint not inserted if software-single-step at same location - test 2014-06-03 12:46:46 +01:00
sss-bp-on-user-bp-2.exp make "set debug target" take effect immediately 2014-08-04 08:07:53 -06:00
sss-bp-on-user-bp.c Tweak sss-bp-on-user-bp.exp 2014-06-04 20:53:47 +08:00
sss-bp-on-user-bp.exp Tweak sss-bp-on-user-bp.exp 2014-06-04 20:53:47 +08:00
stack-checking.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
stack-checking.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
stale-infcall.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
stale-infcall.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
stap-probe.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
stap-probe.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
start.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
start.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
statistics.exp PR 17170 - testcase for GDB global --statistics regression - fix up. 2014-07-17 13:59:03 +02:00
step-break.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-break.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-bt.c PowerPC64 ELFv2 ABI: skip global entry point code 2014-02-04 18:44:14 +01:00
step-bt.exp after gdb_run_cmd, gdb_expect -> gdb_test_multiple/gdb_test 2014-09-12 22:16:31 +01:00
step-line.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-line.exp Don't remove files copied to host 2014-10-20 13:34:28 +08:00
step-line.inp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-resume-infcall.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-resume-infcall.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-sw-breakpoint-adjust-pc.c PR gdb/12623: non-stop crashes inferior, PC adjustment and 1-byte insns 2014-10-28 16:00:06 +00:00
step-sw-breakpoint-adjust-pc.exp PR gdb/12623: non-stop crashes inferior, PC adjustment and 1-byte insns 2014-10-28 16:00:06 +00:00
step-symless.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-symless.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
step-test.c
step-test.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
store.c
store.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
structs.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
structs.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
structs2.c
structs2.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
structs3.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
structs3.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
subst.exp gdb/source.c: Fix matching path substitute rule listing 2014-06-03 07:17:06 -07:00
sum.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
sym-file-lib.c Stale breakpoint instructions, spurious SIGTRAPS. 2014-04-23 15:09:27 +01:00
sym-file-loader.c Stale breakpoint instructions, spurious SIGTRAPS. 2014-04-23 15:09:27 +01:00
sym-file-loader.h Stale breakpoint instructions, spurious SIGTRAPS. 2014-04-23 15:09:27 +01:00
sym-file-main.c Stale breakpoint instructions, spurious SIGTRAPS. 2014-04-23 15:09:27 +01:00
sym-file.exp Stale breakpoint instructions, spurious SIGTRAPS. 2014-04-23 15:09:27 +01:00
symbol-without-target_section.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
symbol-without-target_section.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
symtab-search-order-1.c Add copyright headers. 2014-11-15 10:20:21 -08:00
symtab-search-order-shlib-1.c Add copyright headers. 2014-11-15 10:20:21 -08:00
symtab-search-order.c Add copyright headers. 2014-11-15 10:20:21 -08:00
symtab-search-order.exp PR 17564: Fix objfile search order for static symbols. 2014-11-10 15:48:49 -08:00
term.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
term.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
testenv.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
testenv.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
trace-commands.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
tui-layout.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
twice.c
twice.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
type-opaque-lib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
type-opaque-main.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
type-opaque.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
ui-redirect.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
unload.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
unload.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
unloadshr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
unloadshr2.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
until-nodebug.exp Fix PR 17206 2014-07-29 11:59:32 +08:00
until.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
unwindonsignal.c Remove preprocessor conditionals for ANSI-standard signals 2014-06-06 10:32:12 +01:00
unwindonsignal.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
valgrind-db-attach.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
valgrind-db-attach.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
valgrind-infcall.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
valgrind-infcall.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
value-double-free.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
value-double-free.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
varargs.c
varargs.exp gdb/testsuite/gdb.base/varargs.exp: Remove ARM KFAILs 2014-07-28 15:43:52 +01:00
vdso-warning.c PR symtab/14466: Work around PR libc/13097 "linux-vdso.so.1" 2014-10-10 16:30:59 +01:00
vdso-warning.exp PR symtab/14466: Work around PR libc/13097 "linux-vdso.so.1" 2014-10-10 16:30:59 +01:00
vforked-prog.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
vla-datatypes.c Handle variable-sized fields in the interior of structure type 2014-08-01 07:44:27 -07:00
vla-datatypes.exp Handle variable-sized fields in the interior of structure type 2014-08-01 07:44:27 -07:00
vla-ptr.c test: evaluate pointers to C99 vla correctly. 2014-04-14 09:26:22 -07:00
vla-ptr.exp test: evaluate pointers to C99 vla correctly. 2014-04-14 09:26:22 -07:00
vla-sideeffect.c vla: evaluate operand of sizeof if its type is a vla 2014-04-14 09:21:46 -07:00
vla-sideeffect.exp vla: evaluate operand of sizeof if its type is a vla 2014-04-14 09:21:46 -07:00
volatile.exp Handle volatile array types in dwarf2read.c. 2014-07-01 22:11:53 +02:00
watch-bitfields.c Fix PR12526: -location watchpoints for bitfield arguments 2014-09-16 17:40:06 +01:00
watch-bitfields.exp gdb.base/watch-bitfields.exp: Improve test 2014-09-16 17:55:21 +01:00
watch-cond-infcall.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-cond-infcall.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-cond.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-cond.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-non-mem.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-non-mem.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-read.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-read.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-vfork.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch-vfork.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch_thread_num.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watch_thread_num.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-cond-gone-stripped.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-cond-gone.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-cond-gone.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-delete.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-delete.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-hw-hit-once.c Remove stale comment 2014-08-19 18:18:31 +01:00
watchpoint-hw-hit-once.exp Set breakpoint on the right line 2014-08-19 21:31:36 +08:00
watchpoint-hw.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-hw.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-reuse-slot.c x86 Linux watchpoints: Couldn't write debug register: Invalid argument. 2014-06-23 16:44:04 +01:00
watchpoint-reuse-slot.exp watchpoint-reuse-slot.exp: Correctly skip unsupported commands. 2014-06-30 13:33:48 +02:00
watchpoint-solib-shr.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-solib.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoint-solib.exp GDB/testsuite: Correct gdb.base/watchpoint-solib.exp timeout tweak 2014-09-09 17:39:17 +01:00
watchpoint-stops-at-right-insn.c Add test to make sure GDB knows which "kind" of watchpoint the target has 2014-09-16 14:05:06 +01:00
watchpoint-stops-at-right-insn.exp Fix watchpoint-stops-at-right-insn.exp 2014-09-16 14:27:57 +01:00
watchpoint.c GDB testsuite: drop non-prototype C function header variants 2014-11-13 10:20:44 +01:00
watchpoint.exp Skip test 'watch -location nullptr->p->x' if null pointer can be dereferenced 2014-06-01 11:46:39 +08:00
watchpoints.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
watchpoints.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
wchar.c Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
wchar.exp Different outputs affected by hosts 2014-06-17 19:35:32 +08:00
weaklib1.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
weaklib2.c GDB testsuite: Fix warnings with -std=gnu11 2014-11-13 10:20:44 +01:00
whatis-exp.exp Update Copyright year range in all files maintained by GDB. 2014-01-01 07:54:24 +04:00
whatis.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
whatis.exp Remove Vax Ultrix and VAX BSD support 2014-10-24 17:56:56 +01:00