binutils-gdb/gdb/testsuite/gdb.base
Sergio Durigan Junior a280dbd160 Based on the discussion at:
<https://sourceware.org/ml/gdb-patches/2013-09/msg00301.html>
<https://sourceware.org/ml/gdb-patches/2013-09/msg00383.html>

This patch adds a new convenience function called $_isvoid, whose
only purpose is to check whether an expression is void or not.
This became necessary because the new convenience variable
$_exitsignal (not yet approved) has a mutual exclusive behavior
with $_exitcode, i.e., when one is "defined" (i.e., non-void),
the other is cleared (i.e., becomes void).  Doug wanted a way to
identify which variable to use, and checking for voidness is the
obvious solution.

It is worth mentioning that my first attempt, after a conversation with
Doug, was to actually implement a new $_isdefined() convenience
function.  I would do that (for convenience variables) by calling
lookup_only_internalvar.  However, I found a few problems:

- Whenever I called $_isdefined ($variable), $variable became defined
  (with a void value), and $_isdefined always returned true.

- Then, I tried to implement $_isdefined ("variable"), and do the "$" +
  "variable" inside GDB, thus making it impossible for GDB to create the
  convenience variable.  However, it was hard to extract the string
  without having to mess with values and their idiossincrasies.
  Therefore, I decided to abandon this attempt (specially because I
  didn't want to spend too much time struggling with it).

Anyway, after talking to Doug again we decided that it would be easier
to implement $_isvoid, and this will probably help in cases like
<http://stackoverflow.com/questions/3744554/testing-if-a-gdb-convenience-variable-is-defined>.

I wrote a NEWS entry for it, and some new lines on the documentation.

gdb/
2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>

	* NEWS: Mention new convenience function $_isvoid.
	* value.c (isvoid_internal_fn): New function.
	(_initialize_values): Add new convenience function $_isvoid.

gdb/doc/
2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>

	* gdb.texinfo (Convenience Functions): Mention new convenience
	function $_isvoid.

gdb/testsuite/
2013-09-16  Sergio Durigan Junior  <sergiodj@redhat.com>

	* gdb.base/gdbvars.c (foo_void): New function.
	(foo_int): Likewise.
	* gdb.base/gdbvars.exp (test_convenience_functions): New
	function.  Call it.
2013-09-16 17:47:30 +00:00
..
comp-dir/subdir
Makefile.in 2013-04-10 Pedro Alves <palves@redhat.com> 2013-04-10 04:35:21 +00:00
a2-run.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
advance.c
advance.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
alias.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
all-bin.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
all-types.c gdb/doc/ 2011-12-13 17:22:11 +00:00
annota1.c gdb/testsuite/ 2012-02-28 22:40:48 +00:00
annota1.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
annota3.c gdb/testsuite/ 2012-02-28 22:40:48 +00:00
annota3.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
anon.c
anon.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
args.c
args.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
argv0-symlink.c PR gdb/15415 2013-08-28 17:52:03 +00:00
argv0-symlink.exp PR gdb/15415 2013-08-28 17:52:03 +00:00
arithmet.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
arrayidx.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
arrayidx.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
assign.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
async-shell.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
async-shell.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
async.c
async.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
attach-pie-misread.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
attach-pie-misread.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
attach-pie-noexec.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
attach-pie-noexec.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
attach-twice.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
attach-twice.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
attach.c
attach.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
attach2.c
auxv.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
auxv.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
average.c
bang.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
bar.c
baz.c
bfp-test.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
bfp-test.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
bigcore.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
bigcore.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
bitfields.c gdb/: 2013-02-11 18:05:35 +00:00
bitfields.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
bitfields2.c gdb/doc/ 2011-12-13 17:22:11 +00:00
bitfields2.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
bitops.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
branches.c
break-always.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-always.exp * gdb.base/break-always.exp: Explicitly specify test name. 2013-06-06 15:50:37 +00:00
break-caller-line.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-caller-line.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-entry.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
break-inline.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-inline.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-interp-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-interp-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-interp.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
break-on-linker-gcd-function.cc Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
break-on-linker-gcd-function.exp gdb/testsuite/ 2013-07-02 20:06:12 +00:00
break-probes-solib.c 2013-06-04 Gary Benson <gbenson@redhat.com> 2013-06-04 13:31:00 +00:00
break-probes.c 2013-06-04 Gary Benson <gbenson@redhat.com> 2013-06-04 13:31:00 +00:00
break-probes.exp 2013-06-04 Gary Benson <gbenson@redhat.com> 2013-06-04 13:31:00 +00:00
break.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break.exp ? .deps 2013-08-12 11:54:04 +00:00
break1.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
breakpoint-shadow.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
breakpoint-shadow.exp test suite update - gdb.base/[ab] 2013-06-27 18:47:53 +00:00
call-ar-st.c
call-ar-st.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
call-rt-st.c
call-rt-st.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
call-sc.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
call-sc.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
call-signal-resume.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
call-signals.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
call-strs.c
call-strs.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
callexit.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
callexit.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
callfuncs.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
callfuncs.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
catch-load-so.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
catch-load.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
catch-load.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
catch-signal-fork.c Fix internal error caused by interaction between catch signal and fork 2013-05-21 18:47:05 +00:00
catch-signal-fork.exp Fix internal error caused by interaction between catch signal and fork 2013-05-21 18:47:05 +00:00
catch-signal.c Fix to handle properly 'catch signal SIGINT' and SIGTRAP 2013-05-03 19:16:56 +00:00
catch-signal.exp Fix to handle properly 'catch signal SIGINT' and SIGTRAP 2013-05-03 19:16:56 +00:00
catch-syscall.c
catch-syscall.exp [Committing the `catch syscall' patch for ARM, from Samuel Bronson.] 2013-08-22 20:32:54 +00:00
charset-malloc.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
charset.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
charset.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
checkpoint.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
checkpoint.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
chng-syms.c
chng-syms.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
code-expr.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
code_elim.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
code_elim1.c gdb.base/code_elim.exp - force .bss creation. 2013-08-30 16:36:03 +00:00
code_elim2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
commands.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
completion.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
complex.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
complex.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
comprdebug.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
cond-eval-mode.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
cond-expr.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
condbreak.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
consecutive.c gdb/doc/ 2011-12-13 17:22:11 +00:00
consecutive.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
constvars.c gdb/doc/ 2011-12-13 17:22:11 +00:00
constvars.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
corefile.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
coremaker.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
coremaker2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ctxobj-f.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ctxobj-m.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ctxobj-v.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ctxobj.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
cursal.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
cursal.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
cvexpr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
cvexpr.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
d10v.ld
d10vovly.c
dbx.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
debug-expr.c * eval.c (evaluate_subexp_standard): Fix thinko in handling 2012-08-08 21:17:04 +00:00
debug-expr.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
default.exp test: adjust 'cd' regexpr to match an optional canonically pathname 2013-09-10 07:32:25 +00:00
define.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
del.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
del.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
detach.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
dfp-exprs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dfp-test.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dfp-test.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
disabled-location.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
disabled-location.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
disasm-end-cu-1.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
disasm-end-cu-2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
disasm-end-cu.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
disp-step-fork.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
disp-step-syscall.exp gdb/testsuite/gdb.base: Enable disp-step-syscall.exp tests for ARM. 2013-07-19 10:24:34 +00:00
disp-step-vfork.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
display.c 2011-08-09 Pedro Alves <pedro@codesourcery.com> 2011-08-09 16:21:18 +00:00
display.exp Add new 'z' format for print command. 2013-07-25 10:16:08 +00:00
dmsym.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dmsym.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
dmsym_main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dprintf-next.c 2013-06-25 Yao Qi <yao@codesourcery.com> 2013-06-25 11:37:48 +00:00
dprintf-next.exp 2013-06-25 Yao Qi <yao@codesourcery.com> 2013-06-25 11:37:48 +00:00
dprintf-non-stop.c 2013-06-25 Yao Qi <yao@codesourcery.com> 2013-06-25 11:37:48 +00:00
dprintf-non-stop.exp 2013-06-25 Yao Qi <yao@codesourcery.com> 2013-06-25 11:37:48 +00:00
dprintf-pending.c 2013-04-10 Pedro Alves <palves@redhat.com> 2013-04-10 04:35:21 +00:00
dprintf-pending.exp 2013-04-10 Pedro Alves <palves@redhat.com> 2013-04-10 04:35:21 +00:00
dprintf-pendshr.c 2013-04-10 Pedro Alves <palves@redhat.com> 2013-04-10 04:35:21 +00:00
dprintf.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dprintf.exp 2013-06-25 Yao Qi <yao@codesourcery.com> 2013-06-25 11:37:48 +00:00
dump.c
dump.exp * gdb.base/dump.exp: Remove arch-specific tests and do a 2013-07-06 02:36:46 +00:00
dup-sect.S Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dup-sect.exp test suite update - gdb.base/[cd] 2013-06-27 18:49:03 +00:00
duplicate-bp.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
duplicate-bp.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
echo.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
empty_exe.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ena-dis-br.exp 2013-08-12 Muhammad Waqas <mwaqas@codesourcery.com> 2013-08-23 06:22:10 +00:00
ending-run.c
ending-run.exp Remove superfluous semicolons from testsuite throughout. 2013-06-07 17:31:09 +00:00
enum_cond.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
enum_cond.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
enumval.c * dwarf2read.c (queue_and_load_all_dwo_tus): New function. 2013-09-04 23:05:32 +00:00
enumval.exp * dwarf2read.c (queue_and_load_all_dwo_tus): New function. 2013-09-04 23:05:32 +00:00
environ.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
eu-strip-infcall.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
eu-strip-infcall.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
eval-skip.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
eval.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
exe-lock.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
execd-prog.c
expand-psymtabs.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
expand-psymtabs.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
exprs.c PR exp/15364: 2013-05-13 16:51:52 +00:00
exprs.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
fileio.c
fileio.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
filesym.c * gdb.base/filesym.exp: New completer test. 2013-05-15 21:21:05 +00:00
filesym.exp * gdb.base/filesym.exp: Use gdb_test_multiple instead of 2013-05-21 19:11:50 +00:00
find-unmapped.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
find-unmapped.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
find.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
find.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
finish.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
fixsection.c Remove my name from a couple tests. 2013-05-15 17:33:04 +00:00
fixsection.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
fixsectshr.c
float.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
float.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
foll-exec.c
foll-exec.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
foll-fork.c
foll-fork.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
foll-vfork-exit.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
foll-vfork.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
foll-vfork.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
foo.c
fortran-sym-case.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
fortran-sym-case.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
frame-args.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
frame-args.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
freebpcmd.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
freebpcmd.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
fullname.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
fullname.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
fullpath-expand-func.c gdb/ 2013-02-03 16:20:20 +00:00
fullpath-expand.c gdb/ 2013-02-03 16:20:20 +00:00
fullpath-expand.exp gdb/ 2013-02-03 16:20:20 +00:00
func-ptr.c PR symtab/15695 2013-08-01 23:59:48 +00:00
func-ptr.exp PR symtab/15695 2013-08-01 23:59:48 +00:00
funcargs.c gdb/doc/ 2011-12-13 17:22:11 +00:00
funcargs.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
gcore-buffer-overflow.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gcore-buffer-overflow.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
gcore-relro-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gcore-relro-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gcore-relro.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
gcore.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gcore.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
gdb1056.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1090.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1090.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
gdb1250.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1250.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
gdb1555-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1555.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1555.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
gdb1821.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1821.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
gdb11530.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb11530.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
gdb11531.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb11531.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
gdb_history * NEWS: Mention symbol-reloading has been deleted. 2012-03-13 21:02:40 +00:00
gdbindex-stabs-dwarf.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdbindex-stabs.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdbindex-stabs.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
gdbvars.c Based on the discussion at: 2013-09-16 17:47:30 +00:00
gdbvars.exp Based on the discussion at: 2013-09-16 17:47:30 +00:00
gnu-debugdata.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gnu-debugdata.exp minidebuginfo: Fix stripping/debuginfo 2013-09-11 08:31:44 +00:00
gnu-ifunc-lib.c gdb/testsuite/gdb.base/gnu-ifunc-lib.c: Use %function syntax. 2013-07-05 10:40:10 +00:00
gnu-ifunc.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gnu-ifunc.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
gnu_vector.c http://sourceware.org/ml/gdb-patches/2012-11/msg00312.html 2013-01-25 17:16:43 +00:00
gnu_vector.exp test suite update - gdb.base/[efg] 2013-06-27 18:50:30 +00:00
grbx.c
hashline1.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hashline2.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hashline3.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hbreak.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hbreak.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hbreak2.exp Remove superfluous semicolons from testsuite throughout. 2013-06-07 17:31:09 +00:00
help.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hook-stop-continue.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hook-stop-continue.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
hook-stop-frame.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
hook-stop-frame.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
huge.c
huge.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
ifelse.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
included.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
included.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
included.h Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
inferior-died.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
inferior-died.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
infnan.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
infnan.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
info-fun-solib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
info-fun.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
info-fun.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
info-macros.c * gdb.base/info-macros.c: Fix whitespace. 2012-09-05 18:20:53 +00:00
info-macros.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
info-os.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
info-os.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
info-proc.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
info-shared-solib1.c 2013-06-04 Gary Benson <gbenson@redhat.com> 2013-06-04 13:31:00 +00:00
info-shared-solib2.c 2013-06-04 Gary Benson <gbenson@redhat.com> 2013-06-04 13:31:00 +00:00
info-shared.c 2013-06-04 Gary Benson <gbenson@redhat.com> 2013-06-04 13:31:00 +00:00
info-shared.exp 2013-06-04 Gary Benson <gbenson@redhat.com> 2013-06-04 13:31:00 +00:00
info-target.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
infoline.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
infoline.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
int-type.c gdb/doc/ 2011-12-13 17:22:11 +00:00
interact.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
interp.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
interp.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
interrupt-noterm.c GDB kills itself instead of interrupting inferior 2013-07-26 11:15:45 +00:00
interrupt-noterm.exp GDB kills itself instead of interrupting inferior 2013-07-26 11:15:45 +00:00
interrupt.c gdb/doc/ 2011-12-13 17:22:11 +00:00
interrupt.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
jit-dlmain.c Fix JIT clang-lli regression (unable to read JIT descriptor from memory) 2011-07-06 21:40:17 +00:00
jit-main.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
jit-simple.c PR gdb/13431: 2012-02-01 20:21:22 +00:00
jit-simple.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
jit-so.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
jit-solib.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
jit.exp gdb/testsuite/ 2013-03-15 01:41:29 +00:00
jump.c
jump.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
kill-after-signal.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
kill-after-signal.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
label.c gdb/testsuite 2013-01-18 19:14:51 +00:00
label.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
langs.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
langs0.c gdb/doc/ 2011-12-13 17:22:11 +00:00
langs1.c
langs1.f Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
langs2.c
langs2.cxx
ldbl_e308.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ldbl_e308.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
lineinc.c
lineinc.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
lineinc1.h
lineinc2.h
lineinc3.h
linespecs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
list.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
list0.c list.exp: Avoid hardcoding line numbers. 2013-03-28 11:56:51 +00:00
list0.h
list1.c
logical.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
long_long.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
long_long.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
longest-types.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
longest-types.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
longjmp.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
longjmp.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
m32r.ld
m32rovly.c
macscp.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
macscp1.c PR macros/7961: 2012-06-27 18:08:41 +00:00
macscp2.h
macscp3.h
macscp4.h
maint.exp use language of the main symbol 2013-08-07 20:03:52 +00:00
memattr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
memattr.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
mips_pro.c gdb/doc/ 2011-12-13 17:22:11 +00:00
mips_pro.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
miscexprs.c gdb/doc/ 2011-12-13 17:22:11 +00:00
miscexprs.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
morestack.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
morestack.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
moribund-step.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
multi-forks.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
multi-forks.exp test suite update - gdb.base/[h-m] 2013-06-27 18:51:31 +00:00
nextoverexit.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
nextoverexit.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
nodebug.c gdb/doc/ 2011-12-13 17:22:11 +00:00
nodebug.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
nofield.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
nofield.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
nostdlib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
nostdlib.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
opaque.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
opaque0.c gdb/doc/ 2011-12-13 17:22:11 +00:00
opaque1.c
overlays.c
overlays.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
ovlymgr.c
ovlymgr.h
page.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pc-fp.c
pc-fp.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
pending.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pending.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
pendshr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
permissions.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
pi.txt
pie-execl.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pie-execl.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
pointers.c gdb/doc/ 2011-12-13 17:22:11 +00:00
pointers.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
pr10179-a.c
pr10179-b.c
pr10179.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pr11022.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
pr11022.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
prelink-lib.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
prelink.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
prelink.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
print-file-var-lib1.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
print-file-var-lib2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
print-file-var-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
print-file-var.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
printcmds.c PR gdb/14288 2012-11-10 20:19:01 +00:00
printcmds.exp Handle '#' flag for printf of pointer types. 2013-08-13 16:05:23 +00:00
prologue-include.c gdb/ 2013-01-24 20:36:03 +00:00
prologue-include.exp gdb/ 2013-01-24 20:36:03 +00:00
prologue-include.h gdb/ 2013-01-24 20:36:03 +00:00
prologue.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
prologue.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
psymtab.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
psymtab1.c
psymtab2.c
ptr-typedef.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ptr-typedef.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
ptype.c gdb/doc/ 2011-12-13 17:22:11 +00:00
ptype.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
ptype1.c
radix.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
random-signal.c Fix PR cli/15603 2013-06-18 19:57:49 +00:00
random-signal.exp Fix PR cli/15603 2013-06-18 19:57:49 +00:00
randomize.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
randomize.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
range-stepping.c range stepping: tests 2013-05-23 17:19:05 +00:00
range-stepping.exp gdb/testsuite/ 2013-05-24 09:57:12 +00:00
readline-ask.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
readline-ask.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
readline-ask.inputrc Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
readline.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
realname-expand-real.c gdb/ 2013-02-03 16:20:20 +00:00
realname-expand.c gdb/ 2013-02-03 16:20:20 +00:00
realname-expand.exp gdb/ 2013-02-03 16:20:20 +00:00
recpar.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
recpar.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
recurse.c gdb/doc/ 2011-12-13 17:22:11 +00:00
recurse.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
relational.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
relativedebug.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
relativedebug.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
relocate.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
relocate.exp 2013-09-04 Muhammad Bilal <mbilal@codesourcery.com> 2013-09-04 06:17:08 +00:00
remote.c
remote.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
remotetimeout.exp Remove superfluous semicolons from testsuite throughout. 2013-06-07 17:31:09 +00:00
reread.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
reread1.c gdb/doc/ 2011-12-13 17:22:11 +00:00
reread2.c gdb/ 2011-12-19 22:20:07 +00:00
restore.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
restore.exp gdb/testsuite/ 2013-01-26 18:43:43 +00:00
return-nodebug.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
return-nodebug.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
return-nodebug1.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
return.c gdb/doc/ 2011-12-13 17:22:11 +00:00
return.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
return2.c
return2.exp test suite update - gdb.base/[n-r] 2013-06-27 18:53:49 +00:00
run.c gdb/doc/ 2011-12-13 17:22:11 +00:00
save-bp.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
save-bp.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
savedregs.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
savedregs.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
scope.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
scope0.c gdb/doc/ 2011-12-13 17:22:11 +00:00
scope1.c
sect-cmd.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sep-proc.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sep.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sep.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
sepdebug.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sepdebug.exp Remove superfluous semicolons from testsuite throughout. 2013-06-07 17:31:09 +00:00
sepdebug2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sepsymtab.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sepsymtab.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
set-lang-auto.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
set-noassign.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
setshow.c gdb/doc/ 2011-12-13 17:22:11 +00:00
setshow.exp 2013-07-30 Muhammad Bilal <mbilal@codesorcery.com> 2013-07-30 12:06:04 +00:00
setvar.c gdb: 2012-11-02 00:14:39 +00:00
setvar.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
shell.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
shlib-call.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
shmain.c
shr1.c
shr2.c
shreloc.c
shreloc.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
shreloc1.c
shreloc2.c
sigall.c gdb/testsuite/ 2012-02-28 10:24:15 +00:00
sigall.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
sigaltstack.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigaltstack.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
sigbpt.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigbpt.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
sigchld.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
sigchld.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
siginfo-addr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo-addr.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
siginfo-infcall.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo-infcall.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
siginfo-obj.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo-obj.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
siginfo-thread.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo-thread.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
siginfo.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
signals.c gdb/testsuite/ 2012-02-28 10:24:15 +00:00
signals.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
signest.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
signest.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
signull.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
signull.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
sigrepeat.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigrepeat.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
sigstep.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigstep.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
sizeof.c
sizeof.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
skip-solib-lib.c 2011-10-06 Justin Lebar <justin.lebar@gmail.com> 2011-11-01 14:51:25 +00:00
skip-solib-main.c 2011-10-06 Justin Lebar <justin.lebar@gmail.com> 2011-11-01 14:51:25 +00:00
skip-solib.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
skip.c testsuite/gdb.base: Make skip test use defined behaviour. 2013-06-18 18:16:16 +00:00
skip.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00: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 years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
so-impl-ld.c
so-impl-ld.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
so-indr-cl.c
so-indr-cl.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-corrupted.exp 2013-06-04 Jan Kratochvil <jan.kratochvil@redhat.com> 2013-06-04 13:23:32 +00:00
solib-disc.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-disc.exp 2013-05-24 Gary Benson <gbenson@redhat.com> 2013-05-24 14:02:35 +00:00
solib-display-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-display-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-display.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
solib-nodir.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
solib-overlap-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-overlap-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-overlap.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
solib-search-lib1.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
solib-search-lib2.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
solib-search.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
solib-search.exp * gdb.base/solib-search.exp: Set test name for "set 2013-05-08 18:56:02 +00:00
solib-search.h Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
solib-symbol-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-symbol-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-symbol.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
solib-weak.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-weak.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
solib.c
solib.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib1.c
solib2.c
source-error.gdb Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
source-test.gdb Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
source.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
spu.ld
ss.h
stack-checking.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
stack-checking.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
stale-infcall.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
stale-infcall.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
stap-probe.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
stap-probe.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
start.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
start.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
step-break.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-break.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
step-bt.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-bt.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
step-line.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-line.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
step-line.inp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-resume-infcall.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-resume-infcall.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
step-symless.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-symless.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
step-test.c
step-test.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
store.c
store.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
structs.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
structs.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
structs2.c gdb/doc/ 2011-12-13 17:22:11 +00:00
structs2.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
structs3.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
structs3.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
subst.exp * gdb.base/subst.exp: Delete default rules before further 2013-06-19 20:37:26 +00:00
sum.c
symbol-without-target_section.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
symbol-without-target_section.exp test suite update - gdb.base/s* 2013-06-27 18:58:28 +00:00
term.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
term.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
testenv.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
testenv.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
trace-commands.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
tui-layout.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
twice.c gdb/doc/ 2011-12-13 17:22:11 +00:00
twice.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
type-opaque-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
type-opaque-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
type-opaque.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
ui-redirect.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
unload.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
unload.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
unloadshr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
unloadshr2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
until.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
unwindonsignal.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
unwindonsignal.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
valgrind-db-attach.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
valgrind-db-attach.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
valgrind-infcall.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
valgrind-infcall.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
value-double-free.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
value-double-free.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
varargs.c 2011-05-30 Yao Qi <yao@codesourcery.com> 2011-05-30 02:27:51 +00:00
varargs.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
vforked-prog.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
volatile.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
watch-cond-infcall.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch-cond-infcall.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
watch-cond.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch-cond.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
watch-non-mem.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch-non-mem.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
watch-read.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch-read.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
watch-vfork.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch-vfork.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
watch_thread_num.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch_thread_num.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
watchpoint-cond-gone-stripped.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-cond-gone.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-cond-gone.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
watchpoint-delete.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-delete.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
watchpoint-hw-hit-once.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-hw-hit-once.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-hw.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-hw.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
watchpoint-solib-shr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-solib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint-solib.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
watchpoint.c fix PR symtab/15719 2013-08-02 16:41:08 +00:00
watchpoint.exp fix PR symtab/15719 2013-08-02 16:41:08 +00:00
watchpoints.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoints.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
wchar.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
wchar.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00
weaklib1.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
weaklib2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
whatis-exp.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
whatis.c Fix formating in copyright headers. 2013-06-07 14:39:33 +00:00
whatis.exp test suite update - gdb.base/[t-z] 2013-06-27 19:00:47 +00:00