binutils-gdb/gdb/testsuite/gdb.base
Andrew Burgess 3b9ff5d900 gdb: add trailing '/' when using 'complete' with directory names
This patch contains work pulled from this previously proposed patch:

  https://inbox.sourceware.org/gdb-patches/20210213220752.32581-2-lsix@lancelotsix.com/

But has been modified by me.  Credit for the original idea and
implementation goes to Lancelot, any bugs in this new iteration belong
to me.

Consider the executable `/tmp/foo/my_exec', and if we assume `/tmp' is
empty other than the `foo' sub-directory, then currently within GDB,
if I type:

  (gdb) file /tmp/f

and then hit TAB, GDB completes this to:

  (gdb) file /tmp/foo/

notice that not only did GDB fill in the whole of `foo', but GDB also
added a trailing '/' character.  This is done within readline when the
path that was just completed is a directory.  However, if I instead
do:

  (gdb) complete file /tmp/f
  file /tmp/foo

I now see the completed directory name, but the trailing '/' is
missing.  The reason is that, in this case, the completions are not
offered via readline, but are handled entirely within GDB, and so
readline never gets the chance to add the trailing '/' character.

The above patch added filename option support to GDB, which included
completion of the filename options.  This initially suffered from the
same problem that I've outlined above, but the above patch proposed a
solution to this problem, but this solution only applied to filename
options (which have still not been added to GDB), and was mixed in
with the complete filename options support.

This patch pulls out just the fix for the trailing "/" problem, and
applies it to GDB's general filename completion.  This patch does not
add filename options to GDB, that can always be done later, but I
think this small part is itself a useful fix.

One of the biggest changes I made in this version is that I got rid of
the set_from_readline member function, instead, I now pass the value
of m_from_readline into the completion_tracker constructor.

I then moved the addition of the trailing '/' into filename_completer
so that it is applied in the general filename completion case.  I also
added a call to gdb_tilde_expand which was missing from the original
patch, I haven't tested, but I suspect that this meant that the
original patch would not add the trailing '/' if the user entered a
path starting with a tilde character.

When writing the test for this patch I ran into two problems.

The first was that the procedures in lib/completion-support.exp relied
on the command being completed for the test name.  This is fine for
many commands, but not when completing a filename, if we use the
command in this case the test name will (potentially) include the name
of the directory in which the test is being run, which means we can't
compare results between two runs of GDB from different directories.

So in this commit I've gone through completion-support.exp and added a
new (optional) testname argument to many of the procedures, this
allows me to give a unique test name, that doesn't include the path
for my new tests.

The second issue was in the procedure make_tab_completion_list_re,
this builds the completion list which is displayed after a double tab
when there are multiple possible completions.

The procedure added the regexp ' +' after each completion, and then
added another ' +' at the very end of the expected output.  So, if we
expected to match the name of two functions 'f1' and 'f2' the
generated regexp would be: 'f1 +f2 + +'.  This would match just fine,
the actual output would be: 'f1  f2  ', notice that we get two spaces
after each function name.

However, if we complete two directory names 'd1' and 'd2' then the
output will be 'd1/ d2/ '.  Notice that now we only have a single
space between each match, however, we do get the '/' added instead.

What happens is that when presenting the matches, readline always adds
the appropriate trailing character; if we performed tab completion of
'break f1' then, as 'f1' is a unique match, we'd get 'break f1 ' with
a trailing space added.  However, if we complete 'file d1' then we get
'file d1/'.  Then readline is adding a single space after each
possible match, including the last one, which accounts for the
trailing space character.

To resolve this I've simply remove the addition o the second ' +'
within make_tab_completion_list_re, for the function completion
example I gave above the expected pattern is now 'f1 +f2 +', which for
the directory case we expect 'd1/ +d2/ +', both of which work just
fine.

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=16265
Co-Authored-By: Lancelot SIX <lsix@lancelotsix.com>
Approved-By: Tom Tromey <tom@tromey.com>
Reviewed-By: John Baldwin <jhb@FreeBSD.org>
2024-01-12 11:03:33 +00:00
..
comp-dir/subdir
gdbinit-history
a2-run.exp [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
access-mem-running.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
access-mem-running.exp gdb/testsuite: introduce is_target_non_stop helper proc 2023-02-28 10:56:28 +00:00
add-symbol-file-attach.c [symtab/27831] New test case: gdb.base/add-symbol-file-attach.exp 2023-08-31 07:52:59 -07:00
add-symbol-file-attach.exp [gdb/testsuite] Fix race in gdb.base/add-symbol-file-attach.exp 2023-09-04 13:54:36 +02:00
address_space_qualifier.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
advance-until-multiple-locations.cc Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
advance-until-multiple-locations.exp Rename to allow_cplus_tests and allow_stl_tests 2023-01-13 13:18:57 -07:00
advance.c
advance.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
alias.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
align-c++.exp Rename to allow_cplus_tests and allow_stl_tests 2023-01-13 13:18:57 -07:00
align-c.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
align.exp.tcl Fix gdb.base/align-*.exp and Clang + LTO and AIX GCC 2023-04-06 16:52:34 +01:00
all-architectures-0.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
all-architectures-1.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
all-architectures-2.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
all-architectures-3.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
all-architectures-4.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
all-architectures-5.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
all-architectures-6.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
all-architectures-7.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
all-architectures.exp.tcl [gdb] Fix typos 2023-06-03 22:43:57 +02:00
all-bin.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
all-types.c
annota-input-while-running.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
annota-input-while-running.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
annota1.c
annota1.exp [gdb/testsuite] Handle PAC marker 2024-01-04 13:42:45 +01:00
annota3.c
annota3.exp Use require target_can_use_run_cmd 2023-01-13 13:18:56 -07:00
annotate-symlink.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
anon.c
anon.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
args.c
args.exp gdb/testsuite: cleanup in gdb.base/args.exp 2023-10-06 13:02:36 +01:00
argv0-symlink.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
argv0-symlink.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
arithmet.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
array-indices.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
array-indices.exp.tcl Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
array-repeat.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
array-repeat.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
array-repeat.exp.tcl Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
arrayidx.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
arrayidx.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
asmlabel.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
asmlabel.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
assign.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
async-shell.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
async-shell.exp Use require !use_gdb_stub 2023-01-13 13:18:56 -07:00
async.c
async.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
attach-non-pgrp-leader.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
attach-non-pgrp-leader.exp Use require can_spawn_for_attach 2023-01-13 13:18:56 -07:00
attach-pie-misread.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
attach-pie-misread.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
attach-pie-noexec.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
attach-pie-noexec.exp Use require can_spawn_for_attach 2023-01-13 13:18:56 -07:00
attach-twice.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
attach-twice.exp Use require can_spawn_for_attach 2023-01-13 13:18:56 -07:00
attach-wait-input.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
attach-wait-input.exp Use require !use_gdb_stub 2023-01-13 13:18:56 -07:00
attach.c
attach.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
attach2.c
attach3.c
auto-connect-native-target.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
auto-connect-native-target.exp Add a have_native_target helper function for use with require. 2023-07-14 08:39:24 -07:00
auto-load-script Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
auto-load.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
auto-load.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
auxv.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
auxv.exp Introduce and use is_any_target 2023-01-25 09:02:11 -07:00
average.c
backtrace.c [gdb/testsuite] Handle attributes.h for remote host 2023-03-18 10:16:30 +01:00
backtrace.exp [gdb/testsuite] Handle attributes.h for remote host 2023-03-18 10:16:30 +01:00
bad-file.exp gdb/testsuite: Disable some tests that are broken on remote Windows host 2023-09-05 18:48:22 +00:00
bang.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bar.c
batch-exit-status.bad-commands
batch-exit-status.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
batch-exit-status.good-commands
batch-preserve-term-settings.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
batch-preserve-term-settings.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
baz.c
bfd-errors-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bfd-errors.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
bfp-test.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bfp-test.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bg-exec-sigint-bp-cond.c Don't throw quit while handling inferior events, part II 2023-02-15 20:58:10 +00:00
bg-exec-sigint-bp-cond.exp gdb/testsuite: use kill -FOO instead of kill -SIGFOO 2023-03-03 14:13:00 -05:00
bg-execution-repeat.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bg-execution-repeat.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bigcore.c [gdb] Fix typos 2023-06-03 22:43:57 +02:00
bigcore.exp Use require isnative 2023-01-13 13:18:56 -07:00
bitfields.c
bitfields.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bitfields2.c
bitfields2.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bitops.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
bitshift.exp gdb/testsuite: extend special '^' handling to gdb_test_multiple 2023-05-12 13:45:52 +01:00
bp-cmds-continue-ctrl-c.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bp-cmds-continue-ctrl-c.exp Use require with target_info 2023-03-10 08:21:46 -07:00
bp-cmds-execution-x-script.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bp-cmds-execution-x-script.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bp-cmds-execution-x-script.gdb Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bp-cmds-run-with-ex.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bp-cmds-run-with-ex.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bp-cmds-run-with-ex.gdb Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bp-cmds-sourced-script.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bp-cmds-sourced-script.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bp-cmds-sourced-script.gdb Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bp-cond-failure.c gdb: include location number in breakpoint error message 2023-07-10 10:49:59 +01:00
bp-cond-failure.exp gdb: include location number in breakpoint error message 2023-07-10 10:49:59 +01:00
bp-permanent.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bp-permanent.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
branch-to-self.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
branch-to-self.exp Use require with target_info 2023-03-10 08:21:46 -07:00
break-always.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-always.exp [gdb] Fix typos 2023-06-03 22:43:57 +02:00
break-caller-line.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-caller-line.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-entry.exp Use require !use_gdb_stub 2023-01-13 13:18:56 -07:00
break-fun-addr.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-fun-addr1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-fun-addr2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-idempotent.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-idempotent.exp Rename to allow_hw_breakpoint_tests 2023-01-13 13:18:58 -07:00
break-include.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-include.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-include.inc Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-inline.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-inline.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-interp-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-interp-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-interp.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
break-main-file-remove-fail.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-main-file-remove-fail.exp gdb/breakpoint: use warning function instead of gdb_printf 2023-05-19 10:15:01 +01:00
break-on-linker-gcd-function.cc Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-on-linker-gcd-function.exp Rename to allow_cplus_tests and allow_stl_tests 2023-01-13 13:18:57 -07:00
break-probes-solib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-probes.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-probes.exp [gdb/testsuite] Fix gdb.base/break-probes.exp for remote target 2023-03-07 15:20:18 +01:00
break-unload-file.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-unload-file.exp Rename to allow_hw_breakpoint_tests 2023-01-13 13:18:58 -07:00
break.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
breakpoint-in-ro-region.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
breakpoint-in-ro-region.exp Use require !gdb_debug_enabled 2023-01-13 13:18:56 -07:00
breakpoint-shadow.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
breakpoint-shadow.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bt-on-error-and-warning.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bt-on-fatal-signal.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bt-on-fatal-signal.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
bt-selected-frame.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bt-selected-frame.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
c-linkage-name-2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
c-linkage-name.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
c-linkage-name.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
cached-source-file.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
cached-source-file.exp Use require !use_gdb_stub 2023-01-13 13:18:56 -07:00
call-ar-st.c [gdb] Fix typos 2023-06-03 22:43:57 +02:00
call-ar-st.exp [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
call-rt-st.c [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
call-rt-st.exp gdb/testsuite: change newline patterns used in gdb_test 2023-04-27 13:56:37 +01:00
call-sc.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
call-sc.exp Use require with target_info 2023-03-10 08:21:46 -07:00
call-signal-resume.exp Use require with target_info 2023-03-10 08:21:46 -07:00
call-signals.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
call-strs.c [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
call-strs.exp [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
callexit.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
callexit.exp Use require with target_info 2023-03-10 08:21:46 -07:00
callfuncs.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
callfuncs.exp Use require with target_info 2023-03-10 08:21:46 -07:00
cast-call.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
cast-call.exp Use require with target_info 2023-03-10 08:21:46 -07:00
catch-follow-exec.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
catch-follow-exec.exp Improve "info program" 2023-02-27 19:12:28 +00:00
catch-fork-kill.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
catch-fork-kill.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
catch-fork-static.exp Introduce and use is_any_target 2023-01-25 09:02:11 -07:00
catch-gdb-caused-signals.c [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
catch-gdb-caused-signals.exp [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
catch-load-so.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
catch-load.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
catch-load.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
catch-signal-fork.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
catch-signal-fork.exp Use require with target_info 2023-03-10 08:21:46 -07:00
catch-signal-siginfo-cond.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
catch-signal-siginfo-cond.exp gdb: include breakpoint number in testing condition error message 2023-04-03 14:46:32 +01:00
catch-signal.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
catch-signal.exp Use require with target_info 2023-03-10 08:21:46 -07:00
catch-syscall.c gdb.base/catch-syscall.exp: Remove some Linux-only assumptions. 2023-03-06 16:55:22 -08:00
catch-syscall.exp [gdb/testsuite] Fix typo in gdb.base/catch-syscall.exp 2023-12-31 09:39:45 +01:00
charset-malloc.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
charset.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
charset.exp gdb/testsuite: change newline patterns used in gdb_test 2023-04-27 13:56:37 +01:00
check-psymtab.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
check-psymtab.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
checkpoint-ns.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
checkpoint.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
checkpoint.exp [gdb] Fix assertion failure for checkpoint delete 0 2024-01-10 11:27:34 +01:00
chng-syms.c
chng-syms.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
clear_non_user_bp.exp gdb/testsuite: fix occasional failure in gdb.base/clear_non_user_bp.exp 2023-04-27 13:56:34 +01:00
cli-suppress-notification.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
cli-suppress-notification.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
code-expr.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
code_elim.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
code_elim1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
code_elim2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
command-line-input.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
commands.exp gdb/testsuite: more newline pattern cleanup 2023-05-05 17:59:21 +01:00
compare-sections.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
compare-sections.exp gdb/testsuite: special case '^' in gdb_test pattern 2023-04-27 13:56:38 +01:00
complete-empty.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
completion.exp gdb: add a custom command completer for disassemble command 2023-11-08 11:18:40 +00:00
complex-parts.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
complex-parts.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
complex.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
complex.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
comprdebug.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
cond-eval-mode.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
cond-eval-mode.exp gdb: Make global feature array a per-remote target array 2023-01-30 12:45:31 +01:00
cond-expr.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
condbreak-bad.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
condbreak-bad.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
condbreak-call-false.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
condbreak-call-false.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
condbreak-multi-context.cc Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
condbreak-multi-context.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
condbreak.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
consecutive-step-over.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
consecutive-step-over.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
consecutive.c
consecutive.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
constvars.c
constvars.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
continue-after-aborted-step-over.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
continue-after-aborted-step-over.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
continue-all-already-running.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
continue-all-already-running.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
coredump-filter-build-id.exp [gdb/testsuite] Add and use is_x86_64_m64_target 2023-01-26 10:09:44 +01:00
coredump-filter.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
coredump-filter.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
corefile-buildid-shlib-shr.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
corefile-buildid-shlib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
corefile-buildid.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
corefile-buildid.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
corefile.exp Use require isnative 2023-01-13 13:18:56 -07:00
corefile2.exp Use require isnative 2023-01-13 13:18:56 -07:00
coremaker.c [gdb] Fix grammar in comments and docs 2023-06-05 12:53:15 +02:00
coremaker2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ctf-constvars.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ctf-constvars.exp [gdb/testsuite] Use set always-read-ctf on instead of --strip-debug 2023-03-03 16:51:57 +01:00
ctf-ptype.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ctf-ptype.exp [gdb/testsuite] Use set always-read-ctf on instead of --strip-debug 2023-03-03 16:51:57 +01:00
ctxobj-f.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ctxobj-m.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ctxobj-v.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ctxobj.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
cursal.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
cursal.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
cvexpr.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
cvexpr.exp [gdb/testsuite] Use set always-read-ctf on instead of --strip-debug 2023-03-03 16:51:57 +01:00
dcache-flush.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dcache-flush.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dcache-line-read-error.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dcache-line-read-error.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
debug-expr.c
debug-expr.exp Use require !gdb_debug_enabled 2023-01-13 13:18:56 -07:00
decl-before-def-decl.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
decl-before-def-def.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
decl-before-def.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
default-args.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
default-args.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
default.exp Bump version to 15.0.50.DATE-git. 2023-10-08 09:52:29 +02:00
define-prefix.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
define.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
del.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
del.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
detach-sysroot-target.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
detach-sysroot-target.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
detach.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
dfp-exprs.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
dfp-test.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dfp-test.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
disabled-location.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
disabled-location.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
disasm-end-cu-1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
disasm-end-cu-2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
disasm-end-cu.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
disasm-optim.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
disasm-optim.exp Use require is_amd64_regs_target 2023-01-13 13:18:56 -07:00
disasm-optim.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
disasm-optim.S Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
displaced-step-closure.c Only allow closure lookup by address if there are threads displaced-stepping 2023-10-16 11:56:26 +01:00
displaced-step-closure.exp Only allow closure lookup by address if there are threads displaced-stepping 2023-10-16 11:56:26 +01:00
display.c
display.exp gdb/testsuite: change newline patterns used in gdb_test 2023-04-27 13:56:37 +01:00
dlmopen-lib-dep.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dlmopen-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dlmopen.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dlmopen.exp Rename to allow_dlmopen_tests 2023-01-13 13:18:57 -07:00
dmsym.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dmsym.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dmsym_main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
document.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dprintf-bp-same-addr.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dprintf-bp-same-addr.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dprintf-detach.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dprintf-detach.exp Use require !use_gdb_stub 2023-01-13 13:18:56 -07:00
dprintf-execution-x-script.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dprintf-execution-x-script.exp Use require target_can_use_run_cmd 2023-01-13 13:18:56 -07:00
dprintf-execution-x-script.gdb Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dprintf-next.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dprintf-next.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dprintf-non-stop.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dprintf-non-stop.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dprintf-pending.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dprintf-pending.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
dprintf-pendshr.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dprintf.c [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
dprintf.exp [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
dso2dso-dso1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dso2dso-dso1.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dso2dso-dso2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dso2dso-dso2.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dso2dso.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dso2dso.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
dtrace-probe.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dtrace-probe.d Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dtrace-probe.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dump.c
dump.exp gdb/testsuite: Skip dump ihex for 64-bit address in gdb.base/dump.exp 2023-04-14 20:06:20 +08:00
dup-sect.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dup-sect.S [gdb/testsuite] Use more %progbits for arm 2023-11-24 15:41:22 +01:00
duplicate-bp.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
duplicate-bp.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
early-init-file.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
early-init-file.exp gdb: Enable early init of thread pool size 2023-12-04 14:23:17 +00:00
echo.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
eh_return.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
eh_return.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
empty-host-env-vars.exp gdb/testsuite: Disable some tests that are broken on remote Windows host 2023-09-05 18:48:22 +00:00
empty_exe.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ena-dis-br.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
endian.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
endian.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
endianity.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
endianity.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ending-run.c [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
ending-run.exp [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
enum_cond.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
enum_cond.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
enumval.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
enumval.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
environ.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
eof-exit.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
eu-strip-infcall.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
eu-strip-infcall.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
eval-avoid-side-effects.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
eval-skip.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
eval.exp Allow strings with printf/eval 2023-04-28 10:43:20 -07:00
examine-backward.c [gdb/testsuite] Fix spurious FAILs with examine-backward.exp, again 2023-11-21 13:15:29 +01:00
examine-backward.exp [gdb/testsuite] Fix spurious FAILs with examine-backward.exp, again 2023-11-21 13:15:29 +01:00
exe-lock.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
exec-invalid-sysroot.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
execd-prog.c
execl-update-breakpoints.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
execl-update-breakpoints.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
execution-termios.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
execution-termios.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
exitsignal.exp [gdb] Fix typos 2023-06-03 22:43:57 +02:00
expand-psymtabs.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
expand-psymtabs.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
exprs.c
exprs.exp gdb: improve error reporting from expression parser 2024-01-04 09:24:18 +00:00
fileio.c
fileio.exp gdb/testsuite: XFAIL some gdb.base/fileio.exp 2023-10-04 17:43:23 +02:00
filename-completion.exp gdb: add trailing '/' when using 'complete' with directory names 2024-01-12 11:03:33 +00:00
filesym.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
filesym.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
find-unmapped.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
find-unmapped.exp gdb: Make global feature array a per-remote target array 2023-01-30 12:45:31 +01:00
find.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
find.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
finish-pretty.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
finish-pretty.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
finish.exp Rename skip_float_test to allow form 2023-01-25 09:02:11 -07:00
fixsection.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fixsection.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
fixsectshr.c
flexible-array-member.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
flexible-array-member.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
float.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
float.exp gdb/testsuite: Add support for LoongArch in gdb.base/float.exp 2023-03-16 22:59:34 +08:00
float128.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
float128.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
floatn.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
floatn.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
foll-exec-mode.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
foll-exec-mode.exp More uses of require with istarget 2023-03-10 08:21:46 -07:00
foll-exec.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
foll-exec.exp More uses of require with istarget 2023-03-10 08:21:46 -07:00
foll-fork.c
foll-fork.exp gdb/testsuite: change newline patterns used in gdb_test 2023-04-27 13:56:37 +01:00
foll-vfork-exit.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
foll-vfork.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
foll-vfork.exp gdb/testsuite: replace $testfile with $binfile in one case 2023-07-23 09:25:48 +01:00
foo.c
fork-no-detach-follow-child-dlopen-shlib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fork-no-detach-follow-child-dlopen.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fork-no-detach-follow-child-dlopen.exp [gdb/testsuite] Fix gdb.base/fork-no-detach-follow-child-dlopen.exp for remote target 2023-03-07 15:28:52 +01:00
fork-print-inferior-events.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fork-print-inferior-events.exp [gdb] Fix typos 2023-06-03 22:43:57 +02:00
fork-running-state.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fork-running-state.exp gdb/testsuite: introduce is_target_non_stop helper proc 2023-02-28 10:56:28 +00:00
fortran-sym-case.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fortran-sym-case.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
frame-args.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
frame-args.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
frame-info-consistent.exp [gdb/testsuite] Handle attributes.h for remote host 2023-03-18 10:16:30 +01:00
frame-selection.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
frame-selection.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
frame-view.c gdb: update some copyright years (2022 -> 2023) 2023-03-01 20:54:56 -05:00
frame-view.exp gdb/testsuite: avoid stack addresses in test names 2023-07-10 12:16:30 +01:00
frame-view.py gdb: update some copyright years (2022 -> 2023) 2023-03-01 20:54:56 -05:00
frameapply.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
frameapply.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
freebpcmd.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
freebpcmd.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fullname.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fullname.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
fullpath-expand-func.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fullpath-expand.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fullpath-expand.exp gdb/testsuite: special case '^' in gdb_test pattern 2023-04-27 13:56:38 +01:00
func-ptr.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
func-ptr.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
func-ptrs.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
func-ptrs.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
funcargs.c
funcargs.exp Rename skip_float_test to allow form 2023-01-25 09:02:11 -07:00
gcore-buffer-overflow.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gcore-buffer-overflow.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gcore-relro-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gcore-relro-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gcore-relro-pie.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gcore-relro-pie.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gcore-relro.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
gcore-tls-pie.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gcore-tls-pie.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gcore.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gcore.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
gdb-index-err.c gdb: improve error reporting for 'save gdb-index' 2023-12-13 08:54:06 +00:00
gdb-index-err.exp [gdb/testsuite] Fix gdb.base/gdb-index-err.exp for root user 2023-12-30 20:04:10 +01:00
gdb-sigterm-2.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdb-sigterm.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdb-sigterm.exp Use require !gdb_debug_enabled 2023-01-13 13:18:56 -07:00
gdb1056.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdb1090.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdb1090.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdb1250.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdb1250.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdb1555-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdb1555.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdb1555.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
gdb1821.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdb1821.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdb11530.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdb11530.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdb11531.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdb11531.exp Rename to allow_hw_watchpoint_tests 2023-01-13 13:18:58 -07:00
gdb_history
gdbhistsize-history.exp Don't let .gdb_history file cause failures 2023-02-08 10:12:22 -07:00
gdbindex-stabs-dwarf.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdbindex-stabs.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdbindex-stabs.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gdbinit-history.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
gdbvars.c
gdbvars.exp Support dynamically computed convenience variables in get_internalvar_integer 2023-12-12 15:53:12 +01:00
global-var-nested-by-dso-solib1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
global-var-nested-by-dso-solib2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
global-var-nested-by-dso.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
global-var-nested-by-dso.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
gnu-debugdata.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gnu-debugdata.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gnu-ifunc-final.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gnu-ifunc-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gnu-ifunc.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gnu-ifunc.exp gdb: include breakpoint number in testing condition error message 2023-04-03 14:46:32 +01:00
gnu_vector.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gnu_vector.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gold-gdb-index-2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gold-gdb-index.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gold-gdb-index.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gold-gdb-index.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
grbx.c
hashline1.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
hashline2.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
hashline3.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
hbreak-in-shr-unsupported-shr.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
hbreak-in-shr-unsupported.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
hbreak-in-shr-unsupported.exp gdb: Make global feature array a per-remote target array 2023-01-30 12:45:31 +01:00
hbreak-unmapped.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
hbreak-unmapped.exp Rename to allow_hw_breakpoint_tests 2023-01-13 13:18:58 -07:00
hbreak.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
hbreak.exp Rename to allow_hw_breakpoint_tests 2023-01-13 13:18:58 -07:00
hbreak2.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
help.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
history-duplicates.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
hook-stop.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
hook-stop.exp gdb/testsuite: Make hook-stop.exp ignore termination message from GDB stub 2023-09-05 18:48:22 +00:00
huge.c
huge.exp [gdb/exp] Clean up asap in value_print_array_elements 2023-09-14 20:34:00 +02:00
hw-sw-break-same-address.exp gdb/breakpoint: use warning function instead of gdb_printf 2023-05-19 10:15:01 +01:00
ifelse.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
include-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
include-main.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
included.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
included.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
included.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
index-cache-2.c [gdb/testsuite] Extend gdb.base/index-cache.exp 2023-08-04 15:02:43 +02:00
index-cache.c [gdb/testsuite] Extend gdb.base/index-cache.exp 2023-08-04 15:02:43 +02:00
index-cache.exp [gdb/testsuite] Extend gdb.base/index-cache.exp further 2023-08-04 15:05:57 +02:00
infcall-exec.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
infcall-exec.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
infcall-exec2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
infcall-failure.c gdb: avoid repeated signal reporting during failed conditional breakpoint 2023-04-03 14:46:32 +01:00
infcall-failure.exp gdb: don't always print breakpoint location after failed condition check 2023-04-03 14:46:32 +01:00
infcall-input.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
infcall-input.exp Use require with target_info 2023-03-10 08:21:46 -07:00
infcall-nested-structs-c++.exp Rename to allow_cplus_tests and allow_stl_tests 2023-01-13 13:18:57 -07:00
infcall-nested-structs-c.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
infcall-nested-structs.c [gdb/testsuite] Handle attributes.h for remote host 2023-03-18 10:16:30 +01:00
infcall-nested-structs.exp.tcl [gdb/testsuite] Handle attributes.h for remote host 2023-03-18 10:16:30 +01:00
inferior-args.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
inferior-args.exp gdbserver: fix handling of trailing empty argument 2023-10-06 13:02:36 +01:00
inferior-clone.exp gdb: make set/show inferior-tty work with $_gdb_setting_str 2023-04-28 22:50:46 +01:00
inferior-died.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
inferior-died.exp More uses of require with istarget 2023-03-10 08:21:46 -07:00
inferior-noarg.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
inferior-noarg.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
infnan.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
infnan.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-fun-solib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-fun.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-fun.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
info-locals-unused-static-var.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-locals-unused-static-var.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-macros.c
info-macros.exp gdb/testsuite: change newline patterns used in gdb_test 2023-04-27 13:56:37 +01:00
info-os.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-os.exp Rename to allow_xml_test 2023-01-13 13:18:57 -07:00
info-proc.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-program.c gdb: update some copyright years (2022 -> 2023) 2023-03-01 20:54:56 -05:00
info-program.exp Improve "info program" 2023-02-27 19:12:28 +00:00
info-shared-solib1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-shared-solib2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-shared.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-shared.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
info-target.exp gdb/testsuite: tighten up some end-of-line patterns 2023-12-08 18:06:27 +00:00
info-types-c++.exp Rename to allow_cplus_tests and allow_stl_tests 2023-01-13 13:18:57 -07:00
info-types-c.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-types.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-types.exp.tcl Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-var-f1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-var-f2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-var.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-var.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info_minsym.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info_minsym.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info_qt.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info_qt.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info_sources.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info_sources.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info_sources_2-header.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info_sources_2-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info_sources_2-test.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info_sources_2.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
info_sources_base.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
infoline-reloc-main-from-zero.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
infoline-reloc-main-from-zero.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
infoline.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
infoline.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
inline-frame-cycle-unwind.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
inline-frame-cycle-unwind.exp Rename to allow_python_tests 2023-01-13 13:18:58 -07:00
inline-frame-cycle-unwind.py Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
int-type.c
interact.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
internal-functions-ptype.exp Make "ptype INTERNAL_FUNCTION" in Ada print like other languages 2023-02-15 20:56:57 +00:00
internal-string-values.c gdb: building inferior strings from within GDB 2023-06-05 13:25:08 +01:00
internal-string-values.exp gdb: building inferior strings from within GDB 2023-06-05 13:25:08 +01:00
interp.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
interp.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
interpreter-exec.gdb Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
interrupt-a.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
interrupt-a.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
interrupt-daemon-attach.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
interrupt-daemon-attach.exp Use require with target_info 2023-03-10 08:21:46 -07:00
interrupt-daemon.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
interrupt-daemon.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
interrupt-noterm.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
interrupt-noterm.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
interrupt.c [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
interrupt.exp [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
jit-attach-pie.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
jit-attach-pie.exp Use require can_spawn_for_attach 2023-01-13 13:18:56 -07:00
jit-bfd-name.exp [gdb/testsuite] Fix gdb.base/jit-bfd-name.exp 2023-10-18 08:26:20 +02:00
jit-elf-dlmain.c
jit-elf-fork-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
jit-elf-fork-solib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
jit-elf-fork.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
jit-elf-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
jit-elf-so.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
jit-elf-solib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
jit-elf-util.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
jit-elf.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
jit-protocol.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
jit-reader-exec.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
jit-reader-exec.exp More uses of require with istarget 2023-03-10 08:21:46 -07:00
jit-reader-execd.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
jit-reader-host.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
jit-reader-host.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
jit-reader-simple-dl.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
jit-reader-simple-jit.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
jit-reader-simple.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
jit-reader-simple.exp gdb/testsuite: accept variable number of spaces in gdb.base/jit-reader-simple.exp regex 2023-10-02 14:24:47 -04:00
jit-reader.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
jit-reader.exp Introduce and use is_any_target 2023-01-25 09:02:11 -07:00
jump-inline.c gdb: Avoid warning for the jump command inside an inline function. 2023-05-08 09:19:29 +02:00
jump-inline.exp gdb: Avoid warning for the jump command inside an inline function. 2023-05-08 09:19:29 +02:00
jump.c
jump.exp gdb, infcmd: support jump command in multi-inferior case 2023-08-16 09:55:52 +01:00
jump_multiple_objfiles-foo.c gdb, infcmd: Support jump command with same line in multiple symtabs 2023-05-24 17:02:21 +01:00
jump_multiple_objfiles.c gdb, infcmd: Support jump command with same line in multiple symtabs 2023-05-24 17:02:21 +01:00
jump_multiple_objfiles.exp gdb, infcmd: Support jump command with same line in multiple symtabs 2023-05-24 17:02:21 +01:00
jump_multiple_objfiles.h gdb, infcmd: Support jump command with same line in multiple symtabs 2023-05-24 17:02:21 +01:00
kill-after-signal.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
kill-after-signal.exp Use require with target_info 2023-03-10 08:21:46 -07:00
kill-detach-inferiors-cmd.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
kill-detach-inferiors-cmd.exp Use require can_spawn_for_attach 2023-01-13 13:18:56 -07:00
kill-during-detach.c [gdb/testsuite] Extend gdb.base/kill-during-detach.exp 2024-01-11 10:12:48 +01:00
kill-during-detach.exp [gdb/testsuite] Extend gdb.base/kill-during-detach.exp 2024-01-11 10:12:48 +01:00
killed-outside.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
killed-outside.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
label-without-address.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
label-without-address.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
label.c
label.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
langs.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
langs0.c
langs1.c
langs1.f Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
langs2.c
langs2.cxx
large-frame-1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
large-frame-2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
large-frame.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
large-frame.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ldbl_e308.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ldbl_e308.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
libsegfault.exp [gdb/testsuite] Add -q to INTERNAL_GDBFLAGS 2023-04-07 10:26:02 +02:00
limited-length.c GDB: Introduce limited array lengths while printing values 2023-02-10 23:49:19 +00:00
limited-length.exp GDB: Introduce limited array lengths while printing values 2023-02-10 23:49:19 +00:00
line-symtabs.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
line-symtabs.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
line-symtabs.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
line65535.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
line65535.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
lineinc.c
lineinc.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
lineinc1.h
lineinc2.h
lineinc3.h
list-ambiguous-readnow.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
list-ambiguous.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
list-ambiguous0.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
list-ambiguous1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
list-missing-source.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
list.exp gdb/cli: fixes to newly added "list ." command 2023-09-19 14:06:49 +02:00
list0.c
list0.h
list1.c gdb/cli: add '.' as an argument for 'list' command 2023-07-14 10:58:17 +02:00
load-command.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
load-command.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
logical.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
long-inferior-output.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
long-inferior-output.exp Use require with target_info 2023-03-10 08:21:46 -07:00
long_long.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
long_long.exp Use require with target_info 2023-03-10 08:21:46 -07:00
longest-types.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
longest-types.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
longjmp-until-in-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
longjmp-until-in-main.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
longjmp.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
longjmp.exp [gdb/testsuite] Fix linespec ambiguity in gdb.base/longjmp.exp 2023-02-10 15:58:00 +01:00
m32r.ld
macro-source-path.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
macro-source-path.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
macscp.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
macscp1.c
macscp2.h
macscp3.h
macscp4.h
main-c.exp [gdb/symtab] Find main language without symtab expansion 2023-08-05 17:57:13 +02:00
main-psymtab.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
maint-expand-symbols-header-file.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
maint-expand-symbols-header-file.exp gdb/testsuite: Adjust some testcases to allow Windows pathnames 2023-09-05 18:48:22 +00:00
maint-expand-symbols-header-file.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
maint-info-sections.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
maint-print-frame-id.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
maint-print-frame-id.exp gdb/testsuite: extend special '^' handling to gdb_test_multiple 2023-05-12 13:45:52 +01:00
maint-target-async-off.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
maint-target-async-off.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
maint.exp gdb/testsuite: match complete lines in gdb.base/maint.exp 2023-10-09 10:43:34 +01:00
many-completions.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
many-headers.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
many-headers.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
max-depth-c++.exp Rename to allow_cplus_tests and allow_stl_tests 2023-01-13 13:18:57 -07:00
max-depth-c.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
max-depth.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
max-depth.exp.tcl Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
max-value-size.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
max-value-size.exp GDB: Ignore `max-value-size' setting with value history accesses 2023-02-10 23:49:19 +00:00
memattr.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
memattr.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
memtag.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
memtag.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
mips_pro.c
mips_pro.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
miscexprs.c
miscexprs.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
morestack.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
morestack.exp [gdb/testsuite] Cleanup unnecessary expr from require line 2023-02-24 13:52:12 +01:00
moribund-step.exp Use require support_displaced_stepping 2023-01-13 13:18:55 -07:00
msym-bp-2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
msym-bp-shl-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
msym-bp-shl-main-2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
msym-bp-shl-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
msym-bp-shl.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
msym-bp.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
msym-bp.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
msym-lang-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
msym-lang.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
msym-lang.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
multi-forks.c [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
multi-forks.exp [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
multi-line-starts-subshell.exp gdb/testsuite: special case '^' in gdb_test pattern 2023-04-27 13:56:38 +01:00
native-target-noproc-tdesc.exp Test that native targets can read a tdesc without a process attached. 2023-07-14 08:39:24 -07:00
nested-addr.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
nested-addr.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
nested-subp1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
nested-subp1.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
nested-subp2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
nested-subp2.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
nested-subp3.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
nested-subp3.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
new-ui-echo.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
new-ui-echo.exp gdb/testsuite: special case '^' in gdb_test pattern 2023-04-27 13:56:38 +01:00
new-ui-pending-input.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
new-ui-pending-input.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
new-ui.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
new-ui.exp gdb/testsuite: special case '^' in gdb_test pattern 2023-04-27 13:56:38 +01:00
nextoverexit.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
nextoverexit.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
nodebug.c
nodebug.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
nofield.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
nofield.exp gdb/testsuite: tighten up some end-of-line patterns 2023-12-08 18:06:27 +00:00
non-executable.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
non-lazy-array-index.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
non-lazy-array-index.exp Rename to allow_python_tests 2023-01-13 13:18:58 -07:00
noreturn-finish.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
noreturn-finish.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
noreturn-return.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
noreturn-return.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
normal.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
nostdlib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
nostdlib.exp Use require !use_gdb_stub 2023-01-13 13:18:56 -07:00
offsets.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
offsets.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
opaque.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
opaque0.c
opaque1.c
options.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
options.exp GDB: Add a character string limiting option 2023-01-19 21:15:56 +00:00
osabi.exp Use require !gdb_debug_enabled 2023-01-13 13:18:56 -07:00
overlays.c
overlays.exp Use require with istarget 2023-01-25 09:02:11 -07:00
ovlymgr.c
ovlymgr.h
page-logging.exp Use require !gdb_debug_enabled 2023-01-13 13:18:56 -07:00
page.exp [gdb/testsuite] Generate long string in gdb.base/page.exp 2023-05-05 18:57:06 +02:00
paginate-after-ctrl-c-running.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
paginate-after-ctrl-c-running.exp Use require with target_info 2023-03-10 08:21:46 -07:00
paginate-bg-execution.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
paginate-bg-execution.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
paginate-execution-startup.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
paginate-execution-startup.exp [gdb/testsuite] Add -q to INTERNAL_GDBFLAGS 2023-04-07 10:26:02 +02:00
paginate-inferior-exit.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
paginate-inferior-exit.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
parse_number.exp Remove some Ada parser helper functions 2023-04-17 10:43:06 -06:00
patch.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
patch.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pc-fp.c
pc-fp.exp gdb/testsuite: change newline patterns used in gdb_test 2023-04-27 13:56:37 +01:00
pending.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pending.exp gdb/testsuite: change newline patterns used in gdb_test 2023-04-27 13:56:37 +01:00
pendshr.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
permissions.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
persistent-lang.cc Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
persistent-lang.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pi.txt
pie-execl.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pie-execl.exp More uses of require with istarget 2023-03-10 08:21:46 -07:00
pie-fork.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pie-fork.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pointers.c
pointers.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pr10179-a.c
pr10179-b.c
pr10179.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pr11022.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pr11022.exp Rename to allow_hw_watchpoint_tests 2023-01-13 13:18:58 -07:00
prelink-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
prelink.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
prelink.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
premature-dummy-frame-removal.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
premature-dummy-frame-removal.exp Rename to allow_python_tests 2023-01-13 13:18:58 -07:00
premature-dummy-frame-removal.py Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pretty-array.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pretty-array.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pretty-print.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pretty-print.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
print-file-var-lib1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
print-file-var-lib2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
print-file-var-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
print-file-var.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
print-file-var.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
print-internal-string.c gdb: building inferior strings from within GDB 2023-06-05 13:25:08 +01:00
print-internal-string.exp gdb: building inferior strings from within GDB 2023-06-05 13:25:08 +01:00
print-symbol-loading-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
print-symbol-loading-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
print-symbol-loading.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
printcmds.c gdb: check max-value-size when reading strings for printf 2023-07-07 15:20:28 +01:00
printcmds.exp gdb: check max-value-size when reading strings for printf 2023-07-07 15:20:28 +01:00
printf-wchar_t.c gdb: check max-value-size when reading strings for printf 2023-07-07 15:20:28 +01:00
printf-wchar_t.exp gdb: check max-value-size when reading strings for printf 2023-07-07 15:20:28 +01:00
prologue-include.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
prologue-include.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
prologue-include.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
prologue.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
prologue.exp Rename to allow_cplus_tests and allow_stl_tests 2023-01-13 13:18:57 -07:00
psym-external-decl-2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
psym-external-decl.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
psym-external-decl.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
psymtab.exp Rename to allow_cplus_tests and allow_stl_tests 2023-01-13 13:18:57 -07:00
psymtab1.c
psymtab2.c
ptr-typedef.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ptr-typedef.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ptype-offsets.cc Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ptype-offsets.exp Simplify C++ type-printing 2023-11-21 14:52:05 -07:00
ptype.c
ptype.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ptype1.c
quit-live.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
quit-live.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
quit.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
radix.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
random-signal.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
random-signal.exp Use require with target_info 2023-03-10 08:21:46 -07:00
randomize.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
randomize.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
range-stepping.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
range-stepping.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
readline-ask.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
readline-ask.exp Support the NO_COLOR environment variable 2023-09-29 10:55:43 -06:00
readline-ask.inputrc Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
readline.exp [gdb/testsuite] Fix gdb.base/readline.exp with stub-termcap 2023-04-29 10:47:46 +02:00
readnever.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
readnever.exp [gdb/testsuite] Use proc readnow in two test-cases 2023-07-22 11:00:25 +02:00
realname-expand-real.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
realname-expand.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
realname-expand.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
recpar.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
recpar.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
recurse.c
recurse.exp Rename to allow_hw_watchpoint_tests 2023-01-13 13:18:58 -07:00
reggroups.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
reggroups.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
relational.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
relativedebug.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
relativedebug.exp Use require with target_info 2023-03-10 08:21:46 -07:00
relocate.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
relocate.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
remote-exec-file.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
remote.c
remote.exp gdb: Add per-remote target variables for memory read and write config 2023-01-30 12:45:31 +01:00
remotetimeout.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
reread-readsym.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
reread-readsym.exp Use require !use_gdb_stub 2023-01-13 13:18:56 -07:00
reread.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
reread1.c
reread2.c
restore.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
restore.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
return-nodebug.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
return-nodebug.exp Rename skip_float_test to allow form 2023-01-25 09:02:11 -07:00
return-nodebug1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
return.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
return.exp Rename skip_float_test to allow form 2023-01-25 09:02:11 -07:00
return2.c
return2.exp Rename skip_float_test to allow form 2023-01-25 09:02:11 -07:00
retval-large-struct.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
retval-large-struct.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
reverse-init-functions.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
rtld-step-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
rtld-step-nodebugsym.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
rtld-step-nodebugsym.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
rtld-step-rtld.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
rtld-step.exp gdb/testsuite: change newline patterns used in gdb_test 2023-04-27 13:56:37 +01:00
run-after-attach.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
run-after-attach.exp Use require can_spawn_for_attach 2023-01-13 13:18:56 -07:00
run-attach-while-running.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
run-attach-while-running.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
run-control-while-bg-execution.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
run-control-while-bg-execution.exp Use require !use_gdb_stub 2023-01-13 13:18:56 -07:00
run.c [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
save-bp.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
save-bp.exp gdb: don't use the global thread-id in the saved breakpoints file 2023-03-20 10:37:15 +00:00
savedregs.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
savedregs.exp Use require with target_info 2023-03-10 08:21:46 -07:00
scope-hw-watch-disable.c gdb, breakpoint: add a destructor to the watchpoint struct 2023-09-19 06:56:53 -06:00
scope-hw-watch-disable.exp gdb, breakpoint: add a destructor to the watchpoint struct 2023-09-19 06:56:53 -06:00
scope.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
scope0.c [gdb] Fix typos 2023-06-03 22:43:57 +02:00
scope1.c
sect-cmd.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
segv.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sep-proc.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sep.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sep.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
sepdebug.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sepdebug.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
sepdebug2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sepsymtab.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sepsymtab.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
server-del-break.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
server-del-break.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
set-cwd.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
set-cwd.exp Use require !use_gdb_stub 2023-01-13 13:18:56 -07:00
set-inferior-tty.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
set-inferior-tty.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
set-lang-auto.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
set-noassign.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
setshow.c
setshow.exp gdb/testsuite: Adjust some testcases to allow Windows pathnames 2023-09-05 18:48:22 +00:00
settings.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
settings.exp gdb: building inferior strings from within GDB 2023-06-05 13:25:08 +01:00
setvar.c
setvar.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
share-env-with-gdbserver.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
share-env-with-gdbserver.exp Use require !use_gdb_stub 2023-01-13 13:18:56 -07:00
share-psymtabs-bt-2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
share-psymtabs-bt.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
share-psymtabs-bt.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
shell.exp Add new "$_shell(CMD)" internal function 2023-02-15 20:58:00 +00:00
shlib-call.exp [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
shmain.c [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
show-user-completion.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
shr1.c
shr2.c
shreloc.c
shreloc.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
shreloc1.c
shreloc2.c
sigall.c
sigall.exp Use require with target_info 2023-03-10 08:21:46 -07:00
sigaltstack.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sigaltstack.exp Use require with target_info 2023-03-10 08:21:46 -07:00
sigbpt.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sigbpt.exp Use require with target_info 2023-03-10 08:21:46 -07:00
sigchld.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sigchld.exp Use require with target_info 2023-03-10 08:21:46 -07:00
siginfo-addr.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
siginfo-addr.exp Use require with target_info 2023-03-10 08:21:46 -07:00
siginfo-infcall.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
siginfo-infcall.exp Use require with target_info 2023-03-10 08:21:46 -07:00
siginfo-obj.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
siginfo-obj.exp Use require with target_info 2023-03-10 08:21:46 -07:00
siginfo-thread.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
siginfo-thread.exp Use require with target_info 2023-03-10 08:21:46 -07:00
siginfo.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
siginfo.exp Use require with target_info 2023-03-10 08:21:46 -07:00
signals-state-child.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
signals-state-child.exp [gdb/testsuite] Fix gdb.base/signals-state-child.exp for remote-gdbserver-on-localhost 2023-03-07 14:46:24 +01:00
signals.c
signals.exp gdb/testsuite: special case '^' in gdb_test pattern 2023-04-27 13:56:38 +01:00
signed-builtin-types-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
signed-builtin-types.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
signed-builtin-types.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
signest.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
signest.exp Use require with target_info 2023-03-10 08:21:46 -07:00
signull.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
signull.exp Use require with target_info 2023-03-10 08:21:46 -07:00
sigrepeat.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sigrepeat.exp Use require with target_info 2023-03-10 08:21:46 -07:00
sigstep.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sigstep.exp Use require with target_info 2023-03-10 08:21:46 -07:00
sigwinch-notty.exp Use require with target_info 2023-03-10 08:21:46 -07:00
sizeof.c
sizeof.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
skip-inline.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
skip-inline.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
skip-solib-lib.c
skip-solib-main.c
skip-solib.exp [gdb/testsuite] Fix gdb.base/skip-solib.exp for remote target 2023-03-07 15:45:47 +01:00
skip.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
skip.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
skip1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
skipcxx.cc Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
skipcxx.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
so-disc-shr.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
so-impl-ld.c
so-impl-ld.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
solib-abort-lib.c Use get_frame_address_in_block in print_frame 2023-08-26 10:10:59 -06:00
solib-abort.c Use get_frame_address_in_block in print_frame 2023-08-26 10:10:59 -06:00
solib-abort.exp Use get_frame_address_in_block in print_frame 2023-08-26 10:10:59 -06:00
solib-corrupted.exp [gdb/testsuite] Use maint ignore-probes in gdb.base/solib-corrupted.exp 2023-02-08 11:48:53 +01:00
solib-disc.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-disc.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
solib-display-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-display-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-display.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
solib-nodir.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
solib-overlap-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-overlap-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-overlap.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
solib-probes-nosharedlibrary.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-probes-nosharedlibrary.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-search-lib1.c [gdb/testsuite] Make gdb.base/solib-search.exp more robust 2024-01-08 10:37:44 +01:00
solib-search-lib2.c [gdb/testsuite] Make gdb.base/solib-search.exp more robust 2024-01-08 10:37:44 +01:00
solib-search.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-search.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
solib-search.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-symbol-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-symbol-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-symbol.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
solib-vanish-lib1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-vanish-lib2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-vanish-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-vanish.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
solib-weak.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-weak.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
solib1.c
source-dir.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
source-dir.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
source-error-1.gdb Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
source-error.gdb Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
source-execution.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
source-execution.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
source-execution.gdb Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
source-nofile.gdb Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
source-open.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
source-open.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
source-test.gdb Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
source.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ss.h
sss-bp-on-user-bp-2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sss-bp-on-user-bp-2.exp Use require !gdb_debug_enabled 2023-01-13 13:18:56 -07:00
sss-bp-on-user-bp.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sss-bp-on-user-bp.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
stack-checking.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
stack-checking.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
stack-protector.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
stack-protector.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
stale-infcall.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
stale-infcall.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
stap-probe.c [gdb/testsuite] Handle attributes.h for remote host 2023-03-18 10:16:30 +01:00
stap-probe.exp [gdb/testsuite] Handle attributes.h for remote host 2023-03-18 10:16:30 +01:00
start-cpp.cc Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
start-cpp.exp Use require !use_gdb_stub 2023-01-13 13:18:56 -07:00
start.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
start.exp Use require !use_gdb_stub 2023-01-13 13:18:56 -07:00
starti.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
starti.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
startup-with-shell.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
startup-with-shell.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
statistics.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-break.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-break.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
step-bt.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-bt.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-indirect-call-thunk.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-indirect-call-thunk.exp More uses of require with istarget 2023-03-10 08:21:46 -07:00
step-line.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-line.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
step-line.inp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-over-clone.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-over-exit.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-over-exit.exp [gdb/testsuite] Fix gdb.base/step-over-exit.exp with glibc debuginfo 2023-06-14 17:39:34 +02:00
step-over-fork.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-over-no-symbols.exp Fix Tcl quoting in gdb_assert 2023-02-23 12:50:30 -07:00
step-over-syscall.exp Remove gdb/19675 kfails (displaced stepping + clone) 2023-11-13 14:16:10 +00:00
step-over-vfork.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-resume-infcall.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-resume-infcall.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-sw-breakpoint-adjust-pc.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-sw-breakpoint-adjust-pc.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-symless.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-symless.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-test.c
step-test.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
step-through-epilogue.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-through-epilogue.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
store.c
store.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
structs.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
structs.exp Use require with target_info 2023-03-10 08:21:46 -07:00
structs2.c
structs2.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
structs3.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
structs3.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
style-interp-exec-mi.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
style-interp-exec-mi.exp Support the NO_COLOR environment variable 2023-09-29 10:55:43 -06:00
style-logging.exp Support the NO_COLOR environment variable 2023-09-29 10:55:43 -06:00
style.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
style.exp Style history variable output 2023-10-22 09:03:42 -06:00
subst.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
sum.c
sym-file-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sym-file-loader.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sym-file-loader.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sym-file-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sym-file.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
symbol-alias.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
symbol-alias.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
symbol-alias2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
symbol-without-target_section.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
symbol-without-target_section.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
symfile-warn.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
symfile-warn.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
symlink-sourcefile.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
symlink-sourcefile.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
symtab-search-order-1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
symtab-search-order-shlib-1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
symtab-search-order.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
symtab-search-order.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
template.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
template.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
term.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
term.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
testenv.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
testenv.exp Use require !use_gdb_stub 2023-01-13 13:18:56 -07:00
thread-bp-multi-loc.c gdb: fix display of thread condition for multi-location breakpoints 2023-02-07 14:41:40 +00:00
thread-bp-multi-loc.exp gdb: fix display of thread condition for multi-location breakpoints 2023-02-07 14:41:40 +00:00
timestamp.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
trace-commands.exp [gdb/testsuite] Fix gdb.base/trace-commands.exp with editing off 2023-03-31 17:15:37 +02:00
traced-thread.c Bail out of "attach" if a thread cannot be traced 2023-12-01 10:36:00 -07:00
traced-thread.exp Bail out of "attach" if a thread cannot be traced 2023-12-01 10:36:00 -07:00
twice.c
twice.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
type-opaque-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
type-opaque-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
type-opaque.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
ui-redirect.exp Use require !gdb_debug_enabled 2023-01-13 13:18:56 -07:00
unload.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
unload.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
unloadshr.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
unloadshr2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
until-nodebug.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
until-trailing-insns.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
until-trailing-insns.exp Use require dwarf2_support 2023-01-13 13:18:55 -07:00
until.exp gdb/testsuite: change newline patterns used in gdb_test 2023-04-27 13:56:37 +01:00
unwind-on-each-insn-amd64-2.exp [gdb/testsuite] Add nopie to gdb.base/unwind-on-each-insn-amd64-2.exp 2023-09-28 09:47:36 +02:00
unwind-on-each-insn-amd64-2.s [gdb/symtab] Trust epilogue unwind info for unknown producer (-g0 case) 2023-02-20 12:20:14 +01:00
unwind-on-each-insn-amd64.exp [gdb/testsuite] Add nopie to gdb.base/unwind-on-each-insn-amd64-2.exp 2023-09-28 09:47:36 +02:00
unwind-on-each-insn-amd64.s [gdb/testsuite] Add gdb.base/unwind-on-each-insn-{amd64,i386}.exp 2023-01-26 17:21:01 +01:00
unwind-on-each-insn-foo.c [gdb/testsuite] Analyze non-leaf fn in gdb.base/unwind-on-each-insn.exp 2023-01-25 13:27:03 +01:00
unwind-on-each-insn-i386.exp [gdb/testsuite] Add nopie to gdb.base/unwind-on-each-insn-amd64-2.exp 2023-09-28 09:47:36 +02:00
unwind-on-each-insn-i386.s [gdb/testsuite] Add gdb.base/unwind-on-each-insn-{amd64,i386}.exp 2023-01-26 17:21:01 +01:00
unwind-on-each-insn.c [gdb/testsuite] Analyze non-leaf fn in gdb.base/unwind-on-each-insn.exp 2023-01-25 13:27:03 +01:00
unwind-on-each-insn.exp [gdb/testsuite] Add nopie to gdb.base/unwind-on-each-insn-amd64-2.exp 2023-09-28 09:47:36 +02:00
unwind-on-each-insn.exp.tcl [gdb/testsuite] Add nopie to gdb.base/unwind-on-each-insn-amd64-2.exp 2023-09-28 09:47:36 +02:00
unwindonsignal.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
unwindonsignal.exp gdb: MI stopped events when unwindonsignal is on 2023-08-23 10:29:17 +01:00
utf8-identifiers.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
utf8-identifiers.exp [gdb/testsuite] Add have_host_locale 2023-06-21 16:29:04 +02:00
valgrind-bt.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
valgrind-bt.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
valgrind-disp-step.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
valgrind-disp-step.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
valgrind-infcall-2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
valgrind-infcall-2.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
valgrind-infcall.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
valgrind-infcall.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
value-double-free.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
value-double-free.exp Rename to allow_hw_watchpoint_tests 2023-01-13 13:18:58 -07:00
value-history-unavailable.c GDB: Only make data actually retrieved into value history available 2023-02-10 23:49:19 +00:00
value-history-unavailable.exp GDB: Only make data actually retrieved into value history available 2023-02-10 23:49:19 +00:00
varargs.c [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
varargs.exp [gdb/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01:00
vdso-warning.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vdso-warning.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vfork-follow-parent.c gdb: fix vfork regressions when target-non-stop is off 2023-08-16 14:59:51 +01:00
vfork-follow-parent.exp [gdb/testsuite] Add missing -no-prompt-anchor in gdb.base/vfork-follow-parent.exp 2024-01-08 13:01:50 +01:00
vforked-prog.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vla-datatypes.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vla-datatypes.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vla-optimized-out.c [gdb/testsuite] Handle attributes.h for remote host 2023-03-18 10:16:30 +01:00
vla-optimized-out.exp [gdb/testsuite] Handle attributes.h for remote host 2023-03-18 10:16:30 +01:00
vla-ptr.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vla-ptr.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vla-sideeffect.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vla-sideeffect.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vla-struct-fields.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vla-struct-fields.exp Use require with test_compiler_info 2023-03-10 08:21:46 -07:00
vla-stub-define.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vla-stub.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vla-stub.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
volatile.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
warning.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
watch-before-fork.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watch-before-fork.exp Rename to allow_hw_watchpoint_access_tests 2023-01-13 13:18:57 -07:00
watch-bitfields.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watch-bitfields.exp gdb/testsuite: change newline patterns used in gdb_test 2023-04-27 13:56:37 +01:00
watch-cond-infcall.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watch-cond-infcall.exp Use require with target_info 2023-03-10 08:21:46 -07:00
watch-cond.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watch-cond.exp Rename to allow_hw_watchpoint_tests 2023-01-13 13:18:58 -07:00
watch-non-mem.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watch-non-mem.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watch-read.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watch-read.exp Rename to allow_hw_watchpoint_access_tests 2023-01-13 13:18:57 -07:00
watch-vfork.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watch-vfork.exp Rename to allow_hw_watchpoint_tests 2023-01-13 13:18:58 -07:00
watch_thread_num.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watch_thread_num.exp Rename to allow_hw_watchpoint_access_tests 2023-01-13 13:18:57 -07:00
watchpoint-cond-gone-stripped.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-cond-gone.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-cond-gone.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-delete.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-delete.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-hw-attach.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-hw-attach.exp Rename to allow_hw_watchpoint_tests 2023-01-13 13:18:58 -07:00
watchpoint-hw-hit-once.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-hw-hit-once.exp Rename to allow_hw_watchpoint_access_tests 2023-01-13 13:18:57 -07:00
watchpoint-hw.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-hw.exp Rename to allow_hw_watchpoint_tests 2023-01-13 13:18:58 -07:00
watchpoint-reuse-slot.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-reuse-slot.exp Rename to allow_hw_watchpoint_tests 2023-01-13 13:18:58 -07:00
watchpoint-solib-shr.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-solib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-solib.exp Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
watchpoint-stops-at-right-insn.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-stops-at-right-insn.exp Rename to allow_hw_watchpoint_tests 2023-01-13 13:18:58 -07:00
watchpoint-unaligned.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-unaligned.exp gdb.base/watchpoint-unaligned.exp: Always initialize wpoffset_to_wpnum 2023-05-02 22:51:10 +02:00
watchpoint.c
watchpoint.exp Add more 'step' tests to gdb.base/watchpoint.exp 2023-12-06 20:09:51 -07:00
watchpoints.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoints.exp Rename to allow_hw_watchpoint_tests 2023-01-13 13:18:58 -07:00
wchar.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
wchar.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
weaklib1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
weaklib2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
whatis-exp.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
whatis-ptype-typedefs.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
whatis-ptype-typedefs.exp [gdb] Fix typos 2023-06-03 22:43:57 +02:00
whatis.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
whatis.exp [gdb/testsuite] Use set always-read-ctf on instead of --strip-debug 2023-03-03 16:51:57 +01:00
with-mf-inc.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
with-mf-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
with-mf.exp Don't use ensure_gdb_index with require 2023-01-13 13:18:54 -07:00
with.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
with.exp gdb/testsuite: special case '^' in gdb_test pattern 2023-04-27 13:56:38 +01:00
wrap-line.exp gdb/testsuite: extend special '^' handling to gdb_test_multiple 2023-05-12 13:45:52 +01:00
write_mem.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
write_mem.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
wrong_frame_bt_full-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
wrong_frame_bt_full-opaque.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
wrong_frame_bt_full.exp gdb/testsuite: change newline patterns used in gdb_test 2023-04-27 13:56:37 +01:00