binutils-gdb/gdb/testsuite/gdb.threads
Andrew Burgess e2f620135d gdb/testsuite: change newline patterns used in gdb_test
This commit makes two changes to how we match newline characters in
the gdb_test proc.

First, for the newline pattern between the command output and the
prompt, I propose changing from '[\r\n]+' to an explicit '\r\n'.

The old pattern would spot multiple newlines, and so there are a few
places where, as part of this commit, I've needed to add an extra
trailing '\r\n' to the pattern in the main test file, where GDB's
output actually includes a blank line.

But I think this is a good thing.  If a command produces a blank line
then we should be checking for it, the current gdb_test doesn't do
that.  But also, with the current gdb_test, if a blank line suddenly
appears in the output, this is going to be silently ignored, and I
think this is wrong, the test should fail in that case.

Additionally, the existing pattern will happily match a partial
newline.  There are a strangely large number of tests that end with a
random '.' character.  Not matching a literal period, but matching any
single character, this is then matching half of the trailing newline
sequence, while the \[\r\n\]+ in gdb_test is matching the other half
of the sequence.  I can think of no reason why this would be
intentional, I suspect that the expected output at one time included a
period, which has since been remove, but I haven't bothered to check
on this.  In this commit I've removed all these unneeded trailing '.'
characters.

The basic rule of gdb_test after this is that the expected pattern
needs to match everything up to, but not including the newline
sequence immediately before the GDB prompt.  This is generally how the
proc is used anyway, so in almost all cases, this commit represents no
significant change.

Second, while I was cleaning up newline matching in gdb_test, I've
also removed the '[\r\n]*' that was added to the start of the pattern
passed to gdb_test_multiple.

The addition of this pattern adds no value.  If the user pattern
matches at the start of a line then this would match against the
newline sequence.  But, due to the '*', if the user pattern doesn't
match at the start of a line then this group doesn't care, it'll
happily match nothing.

As such, there's no value to it, it just adds more complexity for no
gain, so I'm removing it.  No tests will need updating as a
consequence of this part of the patch.

Reviewed-By: Tom Tromey <tom@tromey.com>
2023-04-27 13:56:37 +01:00
..
access-mem-running-thread-exit.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
access-mem-running-thread-exit.exp gdb/testsuite: introduce is_target_non_stop helper proc 2023-02-28 10:56:28 +00:00
async.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
async.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
attach-into-signal.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
attach-into-signal.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
attach-many-short-lived-threads.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
attach-many-short-lived-threads.exp Use require can_spawn_for_attach 2023-01-13 13:18:56 -07:00
attach-non-stop.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
attach-non-stop.exp Use require can_spawn_for_attach 2023-01-13 13:18:56 -07:00
attach-slow-waitpid.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
attach-slow-waitpid.exp Use require with is_remote 2023-01-25 09:02:11 -07:00
attach-stopped.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
attach-stopped.exp Use clean_restart in gdb.threads 2023-01-26 18:28:31 -07:00
bp_in_thread.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
bp_in_thread.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-while-running.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
break-while-running.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
check-libthread-db.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
check-libthread-db.exp More uses of require with istarget 2023-03-10 08:21:46 -07:00
clone-attach-detach.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
clone-attach-detach.exp gdb/testsuite: introduce is_target_non_stop helper proc 2023-02-28 10:56:28 +00:00
clone-new-thread-event.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
clone-new-thread-event.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
clone-thread_db.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
clone-thread_db.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
continue-pending-after-query.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
continue-pending-after-query.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
continue-pending-status.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
continue-pending-status.exp Use require with target_info 2023-03-10 08:21:46 -07:00
corethreads.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
corethreads.exp Use require isnative 2023-01-13 13:18:56 -07:00
create-fail.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
create-fail.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
current-lwp-dead.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
current-lwp-dead.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
detach-step-over.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
detach-step-over.exp gdb/testsuite: use kill -FOO instead of kill -SIGFOO 2023-03-03 14:13:00 -05:00
dlopen-libpthread-lib.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dlopen-libpthread.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
dlopen-libpthread.exp Rename to allow_shlib_tests 2023-01-13 13:18:58 -07:00
execl.c gdb.threads/execl.c: Ensure all threads are started before execl. 2023-03-06 16:55:22 -08:00
execl.exp [gdb/testsuite] Fix gdb.threads/execl.exp for remote target 2023-03-07 16:11:19 +01:00
execl1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
foll-fork-other-thread.c gdb: update some copyright years (2022 -> 2023) 2023-03-01 20:54:56 -05:00
foll-fork-other-thread.exp gdb/testsuite: change newline patterns used in gdb_test 2023-04-27 13:56:37 +01:00
fork-child-threads.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fork-child-threads.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fork-plus-threads.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fork-plus-threads.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fork-thread-pending.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
fork-thread-pending.exp Use clean_restart in gdb.threads 2023-01-26 18:28:31 -07:00
forking-threads-plus-breakpoint.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
forking-threads-plus-breakpoint.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gcore-stale-thread.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gcore-stale-thread.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
gcore-thread.exp gdb/testsuite: change newline patterns used in gdb_test 2023-04-27 13:56:37 +01:00
hand-call-in-threads.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
hand-call-in-threads.exp Use require with target_info 2023-03-10 08:21:46 -07:00
hand-call-new-thread.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
hand-call-new-thread.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ia64-sigill.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
ia64-sigill.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-threads-cur-sal-2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-threads-cur-sal.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
info-threads-cur-sal.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
interrupt-while-step-over.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
interrupt-while-step-over.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
interrupted-hand-call.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
interrupted-hand-call.exp Use require with target_info 2023-03-10 08:21:46 -07:00
kill.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
kill.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04: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
killed.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
killed.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
leader-exit.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
leader-exit.exp Use require with target_info 2023-03-10 08:21:46 -07:00
linux-dp.c
linux-dp.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
local-watch-wrong-thread.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
local-watch-wrong-thread.exp Rename to allow_hw_watchpoint_multi_tests 2023-01-13 13:18:57 -07:00
manythreads.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
manythreads.exp Use require with target_info 2023-03-10 08:21:46 -07:00
multi-create-ns-info-thr.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
multi-create.c gdb.threads/multi-create: Double the existing stack size. 2023-03-06 16:55:22 -08:00
multi-create.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
multiple-step-overs.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
multiple-step-overs.exp Use require with target_info 2023-03-10 08:21:46 -07:00
multiple-successive-infcall.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
multiple-successive-infcall.exp [gdb/testsuite] Fix gdb.threads/multiple-successive-infcall.exp on native-gdbserver 2023-03-09 12:56:27 +01:00
names.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
names.exp Use require with target_info 2023-03-10 08:21:46 -07:00
next-bp-other-thread.c gdb.threads/next-bp-other-thread.c: Ensure child thread is started. 2023-03-06 16:55:22 -08:00
next-bp-other-thread.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
next-fork-other-thread.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
next-fork-other-thread.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
next-while-other-thread-longjmps.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
next-while-other-thread-longjmps.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
no-unwaited-for-left.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
no-unwaited-for-left.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
non-ldr-exc-1.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
non-ldr-exc-1.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
non-ldr-exc-2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
non-ldr-exc-2.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
non-ldr-exc-3.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
non-ldr-exc-3.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
non-ldr-exc-4.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
non-ldr-exc-4.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
non-ldr-exit.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
non-ldr-exit.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
non-stop-fair-events.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
non-stop-fair-events.exp Use require with target_info 2023-03-10 08:21:46 -07:00
omp-par-scope.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
omp-par-scope.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
omp-task.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
omp-task.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pending-fork-event-detach-ns.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pending-fork-event-detach-ns.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pending-fork-event-detach-touch-file.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pending-fork-event-detach.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pending-fork-event-detach.exp [gdb/testsuite] Fix gdb.threads/pending-fork-event-detach.exp for remote target 2023-03-09 15:49:17 +01:00
pending-step.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pending-step.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
print-threads.c
print-threads.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
process-dies-while-detaching.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
process-dies-while-detaching.exp Rename to allow_hw_watchpoint_tests 2023-01-13 13:18:58 -07:00
process-dies-while-handling-bp.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
process-dies-while-handling-bp.exp gdb: Make global feature array a per-remote target array 2023-01-30 12:45:31 +01:00
process-exit-status-is-leader-exit-status.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
process-exit-status-is-leader-exit-status.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pthread_cond_wait.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pthread_cond_wait.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pthreads.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
pthreads.exp Use require with target_info 2023-03-10 08:21:46 -07:00
queue-signal.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
queue-signal.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
reconnect-signal.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
reconnect-signal.exp Add unsupported calls where needed 2023-01-25 09:02:11 -07:00
schedlock-thread-exit.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
schedlock-thread-exit.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
schedlock.c [gdb/testsuite] Fix gdb.threads/schedlock.exp for gcc 4.8.5 2023-02-20 11:16:02 +01:00
schedlock.exp Use require with target_info 2023-03-10 08:21:46 -07:00
siginfo-threads.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
siginfo-threads.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
signal-command-handle-nopass.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
signal-command-handle-nopass.exp Use require with target_info 2023-03-10 08:21:46 -07:00
signal-command-multiple-signals-pending.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
signal-command-multiple-signals-pending.exp Use require with target_info 2023-03-10 08:21:46 -07:00
signal-delivered-right-thread.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
signal-delivered-right-thread.exp Use require with target_info 2023-03-10 08:21:46 -07:00
signal-sigtrap.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
signal-sigtrap.exp Use require with target_info 2023-03-10 08:21:46 -07:00
signal-while-stepping-over-bp-other-thread.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
signal-while-stepping-over-bp-other-thread.exp Use require with target_info 2023-03-10 08:21:46 -07:00
sigstep-threads.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sigstep-threads.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
sigthread.c
sigthread.exp Use require with target_info 2023-03-10 08:21:46 -07:00
slow-waitpid.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
staticthreads.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
staticthreads.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-bg-decr-pc-switch-thread.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-bg-decr-pc-switch-thread.exp [gdb/testsuite] Fix gdb.threads/step-bg-decr-pc-switch-thread.exp for native-gdbserver 2023-03-13 16:47:25 +01:00
step-N-all-progress.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-N-all-progress.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-over-exec-execd.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-over-exec.c [gdb/testsuite] Handle my-syscalls.h for remote host 2023-03-18 10:30:16 +01:00
step-over-exec.exp [gdb/testsuite] Handle my-syscalls.h for remote host 2023-03-18 10:30:16 +01:00
step-over-lands-on-breakpoint.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-over-lands-on-breakpoint.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-over-trips-on-watchpoint.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
step-over-trips-on-watchpoint.exp Rename to allow_hw_watchpoint_tests 2023-01-13 13:18:58 -07:00
stepi-random-signal.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
stepi-random-signal.exp Use require !gdb_debug_enabled 2023-01-13 13:18:56 -07:00
stop-with-handle.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
stop-with-handle.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
switch-threads.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
switch-threads.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
thread-bp-deleted.c gdb: fix mi breakpoint-deleted notifications for thread-specific b/p 2023-02-28 10:56:28 +00:00
thread-bp-deleted.exp gdb: fix mi breakpoint-deleted notifications for thread-specific b/p 2023-02-28 10:56:28 +00:00
thread-execl.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
thread-execl.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
thread-find.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
thread-specific-bp.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
thread-specific-bp.exp [gdb/testsuite] Fix gdb.threads/thread-specific-bp.exp on native-gdbserver 2023-03-09 12:31:26 +01:00
thread-specific.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
thread-specific.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
thread-unwindonsignal.exp Use require with target_info 2023-03-10 08:21:46 -07:00
thread_check.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
thread_check.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
thread_events.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
thread_events.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
threadapply.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
threadapply.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
threxit-hop-specific.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
threxit-hop-specific.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
tid-reuse.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
tid-reuse.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
tls-core.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
tls-core.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
tls-main.c
tls-nodebug-pie.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
tls-nodebug-pie.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
tls-nodebug.c
tls-nodebug.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
tls-shared.c
tls-shared.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
tls-so_extern.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
tls-so_extern.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
tls-so_extern_main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
tls-var-main.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
tls-var.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
tls-var.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
tls.c
tls.exp Eliminate spurious returns from the test suite 2023-01-26 18:28:31 -07:00
tls2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vfork-follow-child-exec.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vfork-follow-child-exec.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vfork-follow-child-exit.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vfork-follow-child-exit.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vfork-multi-inferior-sleep.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vfork-multi-inferior.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vfork-multi-inferior.exp Use require !use_gdb_stub 2023-01-13 13:18:56 -07:00
vfork-multi-thread.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
vfork-multi-thread.exp Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-fork-child.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-fork-mt.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-fork-parent.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-fork-st.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchpoint-fork.exp Rename to allow_hw_breakpoint_tests 2023-01-13 13:18:58 -07:00
watchpoint-fork.h Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchthreads-reorder.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchthreads-reorder.exp Rename to allow_hw_watchpoint_multi_tests 2023-01-13 13:18:57 -07:00
watchthreads.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchthreads.exp Use clean_restart in gdb.threads 2023-01-26 18:28:31 -07:00
watchthreads2.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
watchthreads2.exp gdb: error if 'thread' or 'task' keywords are overused 2023-02-06 11:02:48 +00:00
wp-replication.c Update copyright year range in header of all files managed by GDB 2023-01-01 17:01:16 +04:00
wp-replication.exp Rename to allow_hw_watchpoint_tests 2023-01-13 13:18:58 -07:00