8sa1-binutils-gdb/gdb/testsuite/gdb.base
Pedro Alves f81d112039 Accept "set foo unlimited" in integer/uinteger/zuinteger_unlimited commands.
Currently, several commands take "0" or "-1" to mean "unlimited".

"show" knows when to print "unlimited":

 (gdb) show height
 Number of lines gdb thinks are in a page is 45.
 (gdb) set height 0
 (gdb) show height
 Number of lines gdb thinks are in a page is unlimited.

However, the user can't herself specify "unlimited" directly:

 (gdb) set height unlimited
 No symbol table is loaded.  Use the "file" command.
 (gdb)

This patch addresses that, by adjusting the set handler for all
integer/uinteger/zuinteger_unlimited commands to accept literal
"unlimited".  It also installs a completer.  Presently, we complete on
symbols by default, and at
<http://sourceware.org/ml/gdb-patches/2013-03/msg00864.html> I've
shown a WIP prototype that tried to keep that half working in these
commands.  In the end, it turned out to be more complicated than
justifiable, IMO.  It's super rare to want to pass the value of a
variable/symbol in the program to a GDB set/show knob.  That'll still
work, it's just that we won't assist with completion anymore.  This
patch just sticks with the simple, and completes on "unlimited", and
nothing else.  This simplification means that

  "set he<tab><tab>"

is all it takes to get to:

  "set height unlimited"

The patch then goes through all integer/uinteger/zuinteger_unlimited
commands in the tree, and updates both the online help and the manual
to mention that "unlimited" is accepted in addition to 0/-1.  In the
cases where the command had no online help text at all, this adds it.
I've tried to make the texts read in a way that "unlimited" is
suggested before "0" or "-1" is.

Tested on x86_64 Fedora 17.

gdb/
2013-04-10  Pedro Alves  <palves@redhat.com>

	* cli/cli-decode.c (integer_unlimited_completer): New function.
	(add_setshow_integer_cmd, add_setshow_uinteger_cmd)
	(add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
	completer.
	* cli/cli-setshow.c: Include "cli/cli-utils.h".
	(is_unlimited_literal): New function.
	(do_set_command): Handle literal "unlimited" arguments.
	* frame.c (_initialize_frame) <set backtrace limit>: Document
	"unlimited".
	* printcmd.c (_initialize_printcmd) <set print
	max-symbolic-offset>: Add help text.
	* record-full.c (_initialize_record_full) <set record full
	insn-number-max>: Likewise.
	* record.c (_initialize_record) <set record
	instruction-history-size, set record function-call-history-size>:
	Add help text.
	* ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
	help text.
	* tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
	Likewise.
	* source.c (_initialize_source) <set listsize>: Add help text.
	* utils.c (initialize_utils) <set height, set width>: Likewise.
	<set pagination>: Mention "set height unlimited".
	* valprint.c (_initialize_valprint) <set print elements, set print
	repeats>: Document "unlimited".

gdb/doc/
2013-04-10  Pedro Alves  <palves@redhat.com>

	* gdb.texinfo (Process Record and Replay): Document that "set
	record full insn-number-max", "set record
	instruction-history-size" and "set record
	function-call-history-size" accept "unlimited".
	(Backtrace): Document that "set backtrace limit" accepts
	"unlimited".
	(List): Document that "set listsize" accepts "unlimited".
	(Print Settings)" Document that "set print max-symbolic-offset",
	"set print elements" and "set print repeats" accept "unlimited".
	(Starting and Stopping Trace Experiments): Document that "set
	trace-buffer-size" accepts "unlimited".
	(Remote Configuration): Document that "set tcp connect-timeout"
	accepts "unlimited".
	(Command History): Document that "set history size" accepts
	"unlimited".
	(Screen Size): Document that "set height" and "set width" accepts
	"unlimited".  Adjust "set pagination"'s description to suggest
	"set height unlimited" instead of "set height 0".

gdb/testsuite/
2013-04-10  Pedro Alves  <palves@redhat.com>

	* gdb.base/completion.exp: Test "set height", "set listsize" and
	"set trace-buffer-size" completion.
	* gdb.base/setshow.exp: Test "set height unlimited".
	* gdb.trace/trace-buffer-size.exp: Test "set trace-buffer-size
	unlimited".
2013-04-10 15:11:12 +00:00
..
comp-dir/subdir
a2-run.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
all-types.c
annota1.c gdb/testsuite/ 2012-02-28 22:40:48 +00:00
annota1.exp If a breakpoint is not user visible, then there's no point in 2013-01-22 20:22:39 +00:00
annota3.c gdb/testsuite/ 2012-02-28 22:40:48 +00:00
annota3.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
anon.c
anon.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
args.c
args.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
arithmet.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
arrayidx.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
arrayidx.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
assign.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
async.c
async.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
attach2.c
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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
attach.c
attach.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
auxv.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
auxv.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
average.c
bang.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
bigcore.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
bigcore.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
bitfields2.c
bitfields2.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
bitfields.c gdb/: 2013-02-11 18:05:35 +00:00
bitfields.exp gdb/: 2013-02-11 18:05:35 +00:00
bitops.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
branches.c
break1.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-always.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-always.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 gdb/testsuite/ 2013-03-15 01:41:29 +00:00
break-on-linker-gcd-function.cc Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break-on-linker-gcd-function.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
break.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
break.exp 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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
call-ar-st.c
call-ar-st.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
call-rt-st.c
call-rt-st.exp gdb/testsuite/ 2013-03-14 13:34:06 +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 gdb/testsuite/ 2013-03-14 13:34:06 +00:00
call-signal-resume.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 gdb/testsuite/ 2013-03-14 13:34:06 +00:00
callexit.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
callexit.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
callfuncs.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
callfuncs.exp gdb/testsuite/ 2013-03-14 13:34:06 +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 gdb/testsuite/ 2013-03-15 01:41:29 +00:00
catch-signal.c Update some copyright years. 2013-02-12 18:27:29 +00:00
catch-signal.exp Update some copyright years. 2013-02-12 18:27:29 +00:00
catch-syscall.c
catch-syscall.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
checkpoint.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
checkpoint.exp 2013-01-18 Hafiz Abid Qadeer<abidh@codesourcery.com> 2013-01-18 10:50:15 +00:00
chng-syms.c
chng-syms.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
code_elim1.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
code_elim2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
code_elim.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
code-expr.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
commands.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
completion.exp Accept "set foo unlimited" in integer/uinteger/zuinteger_unlimited commands. 2013-04-10 15:11:12 +00:00
complex.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
complex.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
condbreak.exp gdb/testsuite/ 2013-03-15 01:33:40 +00:00
consecutive.c
consecutive.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
constvars.c
constvars.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
corefile.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
coremaker2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
coremaker.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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
cursal.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
cursal.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
cvexpr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
cvexpr.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
d10v.ld
d10vovly.c
dbx.exp gdb/testsuite/ 2013-03-14 13:34:06 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
define.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
del.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
del.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
detach.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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/ 2013-03-15 01:41:29 +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
display.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dmsym_main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dmsym.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dmsym.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 * gdb.base/dprintf.exp: Fix typo preventing "dprintf info 2" 2013-03-27 05:28:57 +00:00
dump.c
dump.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dup-sect.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
dup-sect.S Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ending-run.c
ending-run.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
enumval.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
enumval.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
environ.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
eval-skip.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
eval.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
exe-lock.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
exprs.c
exprs.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
fileio.c
fileio.exp gdb/testsuite/ 2013-03-14 13:34:06 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
finish.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
fixsection.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
fixsection.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
fixsectshr.c
float.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
foll-fork.c
foll-fork.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
freebpcmd.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
freebpcmd.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
fullname.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
fullname.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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
funcargs.c
funcargs.exp gdb/testsuite/ 2013-03-14 13:34:06 +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 gdb/testsuite/ 2013-03-14 13:34:06 +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 gdb/testsuite/ 2013-03-14 13:34:06 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1250.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1250.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1821.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb1821.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb11530.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb11530.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
gdb11531.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdb11531.exp gdb/testsuite/ 2013-03-14 13:34:06 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
gdbvars.c
gdbvars.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 http://sourceware.org/ml/gdb-patches/2012-11/msg00312.html 2013-01-25 17:16:43 +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 gdb/ 2013-02-01 19:39:04 +00:00
gnu-ifunc-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 gdb/testsuite/ 2013-03-14 13:34:06 +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
hbreak2.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
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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
huge.c
huge.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
included.h Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
inferior-died.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
inferior-died.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
infnan.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
infnan.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
info-macros.c * gdb.base/info-macros.c: Fix whitespace. 2012-09-05 18:20:53 +00:00
info-macros.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 gdb/testsuite/ 2013-03-14 13:34:06 +00:00
info-proc.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
info-target.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
infoline.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
infoline.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
int-type.c
interact.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
interp.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
interp.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
interrupt.c
interrupt.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
jit-dlmain.c
jit-main.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
jit-simple.c PR gdb/13431: 2012-02-01 20:21:22 +00:00
jit-simple.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
jit-so.exp gdb/testsuite/ 2013-03-15 01:41:29 +00:00
jit-solib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
jit.exp gdb/testsuite/ 2013-03-15 01:41:29 +00:00
jump.c
jump.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
label.c gdb/testsuite 2013-01-18 19:14:51 +00:00
label.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
langs0.c
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
langs.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
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
lineinc1.h
lineinc2.h
lineinc3.h
lineinc.c
lineinc.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
linespecs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
list0.c list.exp: Avoid hardcoding line numbers. 2013-03-28 11:56:51 +00:00
list0.h
list1.c
list.exp Fix PR gdb/15294: list with unlimited listsize broken 2013-03-28 11:57:47 +00:00
logical.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
long_long.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
long_long.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
longjmp.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
m32r.ld
m32rovly.c
macscp1.c PR macros/7961: 2012-06-27 18:08:41 +00:00
macscp2.h
macscp3.h
macscp4.h
macscp.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
maint.exp * dwarf2read.c (dw2_get_file_names): Delete arg "objfile". 2013-03-29 00:11:10 +00:00
Makefile.in 2013-04-10 Pedro Alves <palves@redhat.com> 2013-04-10 04:35:21 +00:00
memattr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
memattr.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
mips_pro.c
mips_pro.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
miscexprs.c
miscexprs.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
morestack.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
morestack.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
moribund-step.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
nextoverexit.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
nextoverexit.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
nodebug.c
nodebug.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
nofield.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
nofield.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
nostdlib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
nostdlib.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
opaque0.c
opaque1.c
opaque.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
overlays.c
overlays.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pending.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pending.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pendshr.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
permissions.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pointers.c
pointers.exp gdb/testsuite/ 2013-03-14 13:34:06 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
pr11022.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
prelink-lib.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
prelink.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
printcmds.c PR gdb/14288 2012-11-10 20:19:01 +00:00
printcmds.exp * printcmd.c (printf_c_string,printf_wide_c_string): New functions. 2013-02-11 22:04:58 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
prologue.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
psymtab1.c
psymtab2.c
psymtab.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
ptr-typedef.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ptr-typedef.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
ptype1.c
ptype.c
ptype.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
radix.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
randomize.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
randomize.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
recurse.c
recurse.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
relocate.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
relocate.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
remote.c
remote.exp Fix PR gdb/15289 - "set remote hardware-watchpoint-limit" broken (zinteger commands) 2013-03-20 18:58:16 +00:00
remotetimeout.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
reread1.c
reread2.c
reread.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
restore.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
restore.exp gdb/testsuite/ 2013-01-26 18:43:43 +00:00
return2.c
return2.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
return-nodebug1.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
return.c
return.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
run.c
save-bp.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
save-bp.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
savedregs.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
savedregs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
scope0.c
scope1.c
scope.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sepdebug2.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sepdebug.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sepdebug.exp gdb/testsuite/ 2013-03-15 01:41:29 +00:00
sepsymtab.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sepsymtab.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
set-lang-auto.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33: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
setshow.exp Accept "set foo unlimited" in integer/uinteger/zuinteger_unlimited commands. 2013-04-10 15:11:12 +00:00
setvar.c gdb: 2012-11-02 00:14:39 +00:00
setvar.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
shell.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
shlib-call.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
shmain.c
shr1.c
shr2.c
shreloc1.c
shreloc2.c
shreloc.c
shreloc.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigall.c gdb/testsuite/ 2012-02-28 10:24:15 +00:00
sigall.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigaltstack.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigaltstack.exp Fix some pastos in the testsuite. 2013-02-12 17:54:22 +00:00
sigbpt.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigbpt.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigchld.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigchld.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33: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 Update years in copyright notice for the GDB files. 2013-01-01 06:33: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 Update years in copyright notice for the GDB files. 2013-01-01 06:33: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 Update years in copyright notice for the GDB files. 2013-01-01 06:33: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 Fix some pastos in the testsuite. 2013-02-12 17:54:22 +00:00
signals.c gdb/testsuite/ 2012-02-28 10:24:15 +00:00
signals.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
signest.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
signest.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
signull.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
signull.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigrepeat.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigrepeat.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigstep.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sigstep.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
sizeof.c
sizeof.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
skip1.c
skip-solib-lib.c
skip-solib-main.c
skip-solib.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
skip.c
skip.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33: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
solib1.c
solib2.c
solib-corrupted.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib-nodir.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33: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 gdb/testsuite/ 2013-03-14 13:34:06 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33: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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
solib.c
solib.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
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 Update years in copyright notice for the GDB files. 2013-01-01 06:33: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 Update years in copyright notice for the GDB files. 2013-01-01 06:33: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 Update years in copyright notice for the GDB files. 2013-01-01 06:33: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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
start.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
start.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33: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 Update years in copyright notice for the GDB files. 2013-01-01 06:33: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 Update years in copyright notice for the GDB files. 2013-01-01 06:33: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 Update years in copyright notice for the GDB files. 2013-01-01 06:33: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 Update years in copyright notice for the GDB files. 2013-01-01 06:33: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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
store.c
store.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
structs2.c
structs2.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
structs3.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
structs3.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
structs.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
structs.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
subst.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33: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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
twice.c
twice.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 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
unloadshr.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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 gdb/testsuite/ 2013-03-17 20:37:32 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
varargs.c
varargs.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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_thread_num.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watch_thread_num.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoint.c * gdb.base/watchpoint.c (func2): Initialize local_a. Add 2012-08-02 15:55:45 +00:00
watchpoint.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00
watchpoints.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
watchpoints.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
wchar.c Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
wchar.exp Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +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 Update years in copyright notice for the GDB files. 2013-01-01 06:33:28 +00:00
whatis.exp gdb/testsuite/ 2013-03-14 13:34:06 +00:00