binutils-gdb/gdb/testsuite/gdb.base
Andrew Burgess 901682e4a4 gdb: add support for %V to printf command
This commit adds a new format for the printf and dprintf commands:
'%V'.  This new format takes any GDB expression and formats it as a
string, just as GDB would for a 'print' command, e.g.:

  (gdb) print a1
  $a = {2, 4, 6, 8, 10, 12, 14, 16, 18, 20}
  (gdb) printf "%V\n", a1
  {2, 4, 6, 8, 10, 12, 14, 16, 18, 20}
  (gdb)

It is also possible to pass the same options to %V as you might pass
to the print command, e.g.:

  (gdb) print -elements 3 -- a1
  $4 = {2, 4, 6...}
  (gdb) printf "%V[-elements 3]\n", a1
  {2, 4, 6...}
  (gdb)

This new feature would effectively replace an existing feature of GDB,
the $_as_string builtin convenience function.  However, the
$_as_string function has a few problems which this new feature solves:

1. $_as_string doesn't currently work when the inferior is not
running, e.g:

  (gdb) printf "%s", $_as_string(a1)
  You can't do that without a process to debug.
  (gdb)

The reason for this is that $_as_string returns a value object with
string type.  When we try to print this we call value_as_address,
which ends up trying to push the string into the inferior's address
space.

Clearly we could solve this problem, the string data exists in GDB, so
there's no reason why we have to push it into the inferior, but this
is an existing problem that would need solving.

2. $_as_string suffers from the fact that C degrades arrays to
pointers, e.g.:

  (gdb) printf "%s\n", $_as_string(a1)
  0x404260 <a1>
  (gdb)

The implementation of $_as_string is passed a gdb.Value object that is
a pointer, it doesn't understand that it's actually an array.  Solving
this would be harder than issue #1 I think.  The whole array to
pointer transformation is part of our expression evaluation.  And in
most cases this is exactly what we want.  It's not clear to me how
we'd (easily) tell GDB that we didn't want this reduction in _some_
cases.  But I'm sure this is solvable if we really wanted to.

3. $_as_string is a gdb.Function sub-class, and as such is passed
gdb.Value objects.  There's no super convenient way to pass formatting
options to $_as_string.  By this I mean that the new %V feature
supports print formatting options.  Ideally, we might want to add this
feature to $_as_string, we might imagine it working something like:

  (gdb) printf "%s\n", $_as_string(a1,
                                   elements = 3,
                                   array_indexes = True)

where the first item is the value to print, while the remaining
options are the print formatting options.  However, this relies on
Python calling syntax, which isn't something that convenience
functions handle.  We could possibly rely on strictly positional
arguments, like:

  (gdb) printf "%s\n", $_as_string(a1, 3, 1)

But that's clearly terrible as there's far more print formatting
options, and if you needed to set the 9th option you'd need to fill in
all the previous options.

And right now, the only way to pass these options to a gdb.Function is
to have GDB first convert them all into gdb.Value objects, which is
really overkill for what we want.

The new %V format solves all these problems: the string is computed
and printed entirely on the GDB side, we are able to print arrays as
actual arrays rather than pointers, and we can pass named format
arguments.

Finally, the $_as_string is sold in the manual as allowing users to
print the string representation of flag enums, so given:

  enum flags
    {
      FLAG_A = (1 << 0),
      FLAG_B = (1 << 1),
      FLAG_C = (1 << 1)
    };

  enum flags ff = FLAG_B;

We can:

  (gdb) printf "%s\n", $_as_string(ff)
  FLAG_B

This works just fine with %V too:

  (gdb) printf "%V\n", ff
  FLAG_B

So all functionality of $_as_string is replaced by %V.  I'm not
proposing to remove $_as_string, there might be users currently
depending on it, but I am proposing that we don't push $_as_string in
the documentation.

As %V is a feature of printf, GDB's dprintf breakpoints naturally gain
access to this feature too.  dprintf breakpoints can be operated in
three different styles 'gdb' (use GDB's printf), 'call' (call a
function in the inferior), or 'agent' (perform the dprintf on the
remote).

The use of '%V' will work just fine when dprintf-style is 'gdb'.

When dprintf-style is 'call' the format string and arguments are
passed to an inferior function (printf by default).  In this case GDB
doesn't prevent use of '%V', but the documentation makes it clear that
support for '%V' will depend on the inferior function being called.

I chose this approach because the current implementation doesn't place
any restrictions on the format string when operating in 'call' style.
That is, the user might already be calling a function that supports
custom print format specifiers (maybe including '%V') so, I claim, it
would be wrong to block use of '%V' in this case.  The documentation
does make it clear that users shouldn't expect this to "just work"
though.

When dprintf-style is 'agent' then GDB does no support the use of
'%V' (right now).  This is handled at the point when GDB tries to
process the format string and send the dprintf command to the remote,
here's an example:

  Reading symbols from /tmp/hello.x...
  (gdb) dprintf call_me, "%V", a1
  Dprintf 1 at 0x401152: file /tmp/hello.c, line 8.
  (gdb) set sysroot /
  (gdb) target remote | gdbserver --once - /tmp/hello.x
  Remote debugging using | gdbserver --once - /tmp/hello.x
  stdin/stdout redirected
  Process /tmp/hello.x created; pid = 3088822
  Remote debugging using stdio
  Reading symbols from /lib64/ld-linux-x86-64.so.2...
  (No debugging symbols found in /lib64/ld-linux-x86-64.so.2)
  0x00007ffff7fd3110 in _start () from /lib64/ld-linux-x86-64.so.2
  (gdb) set dprintf-style agent
  (gdb) c
  Continuing.
  Unrecognized format specifier 'V' in printf
  Command aborted.
  (gdb)

This is exactly how GDB would handle any other invalid format
specifier, for example:

  Reading symbols from /tmp/hello.x...
  (gdb) dprintf call_me, "%Q", a1
  Dprintf 1 at 0x401152: file /tmp/hello.c, line 8.
  (gdb) set sysroot /
  (gdb) target remote | gdbserver --once - /tmp/hello.x
  Remote debugging using | gdbserver --once - /tmp/hello.x
  stdin/stdout redirected
  Process /tmp/hello.x created; pid = 3089193
  Remote debugging using stdio
  Reading symbols from /lib64/ld-linux-x86-64.so.2...
  (No debugging symbols found in /lib64/ld-linux-x86-64.so.2)
  0x00007ffff7fd3110 in _start () from /lib64/ld-linux-x86-64.so.2
  (gdb) set dprintf-style agent
  (gdb) c
  Continuing.
  Unrecognized format specifier 'Q' in printf
  Command aborted.
  (gdb)

The error message isn't the greatest, but improving that can be put
off for another day I hope.

Reviewed-By: Eli Zaretskii <eliz@gnu.org>
Acked-By: Simon Marchi <simon.marchi@efficios.com>
2023-05-30 21:49:21 +01: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
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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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 Use clean_restart in gdb.base 2023-01-26 18:28:32 -07: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 Use require with target_info 2023-03-10 08:21:46 -07: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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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 breakpoint number in testing condition error message 2023-04-03 14:46:32 +01:00
bp-cond-failure.exp gdbserver: allow agent expressions to fail with invalid memory access 2023-04-03 14:46:32 +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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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/testsuite] Handle unbuffer_output.c for remote host 2023-03-18 17:50:56 +01: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.base/catch-syscall.exp: Remove some Linux-only assumptions. 2023-03-06 16:55:22 -08: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 More uses of require with istarget 2023-03-10 08:21:46 -07: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 Fix Tcl quoting in gdb_assert 2023-02-23 12:50:30 -07: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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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 gdb/testsuite: change newline patterns used in gdb_test 2023-04-27 13:56:37 +01: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
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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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/testsuite] Add -q to INTERNAL_GDBFLAGS 2023-04-07 10:26:02 +02: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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
examine-backward.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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 Use require with target_info 2023-03-10 08:21:46 -07: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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fileio.c
fileio.exp Use require with target_info 2023-03-10 08:21:46 -07: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 Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07: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 Use require !gdb_debug_enabled 2023-01-13 13:18:56 -07: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: update some copyright years (2022 -> 2023) 2023-03-01 20:54:56 -05: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-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 Issue error on erroneous expression 2023-02-21 12:36:15 -07: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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
huge.c
huge.exp Use require with target_info 2023-03-10 08:21:46 -07: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.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
index-cache.exp [gdb/testsuite] Fix quoting issue in gdb.base/index-cache.exp 2023-03-27 13:58:09 +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 Use require with target_info 2023-03-10 08:21:46 -07: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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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
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 Rename to allow_shlib_tests 2023-01-13 13:18:58 -07: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 Rename to allow_shlib_tests 2023-01-13 13:18:58 -07: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 Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07: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
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 Use clean_restart in gdb.base 2023-01-26 18:28:32 -07:00
list0.c
list0.h
list1.c
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-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 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.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: adjust test cases to previous "maintenance info line-table" change 2023-03-22 15:13:17 -04: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
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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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-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: add support for %V to printf command 2023-05-30 21:49:21 +01:00
printcmds.exp gdb: add support for %V to printf command 2023-05-30 21:49:21 +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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
scope0.c
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: change newline patterns used in gdb_test 2023-04-27 13:56:37 +01: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/testsuite: extend special '^' handling to gdb_test_multiple 2023-05-12 13:45:52 +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 Change gdb.base/skip-solib.exp deal with lack of epilogue information 2022-09-22 11:04:17 +02:00
skip-solib-main.c Change gdb.base/skip-solib.exp deal with lack of epilogue information 2022-09-22 11:04:17 +02:00
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-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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
solib-search-lib2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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 gdb/testsuite: Update gdb.base/so-impl-ld.exp 2022-09-13 14:02:51 +02:00
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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
style-logging.exp Use require with is_remote 2023-01-25 09:02:11 -07: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 [gdb/testsuite] Add -q to INTERNAL_GDBFLAGS 2023-04-07 10:26:02 +02: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
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/symtab] Trust epilogue unwind info for unknown producer (-g0 case) 2023-02-20 12:20:14 +01: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] Simplify gdb.base/unwind-on-each-insn.exp.tcl 2023-01-27 22:01:16 +01: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] Simplify gdb.base/unwind-on-each-insn.exp.tcl 2023-01-27 22:01:16 +01: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] Simplify gdb.base/unwind-on-each-insn.exp.tcl 2023-01-27 22:01:16 +01:00
unwind-on-each-insn.exp.tcl [gdb/testsuite] Simplify gdb.base/unwind-on-each-insn.exp.tcl 2023-01-27 22:01:16 +01: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 Use require with target_info 2023-03-10 08:21:46 -07: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] Require GCC >= 5.x.x in gdb.base/utf8-identifiers.exp 2023-04-24 14:48:06 +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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vfork-follow-parent.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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 gdb/testsuite: special case '^' in gdb_test pattern 2023-04-27 13:56:38 +01: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 Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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