From: Pedro Alves Date: Fri, 24 Jan 2025 18:10:50 +0000 (+0000) Subject: Add test for continuing with some threads running X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f0714b0a61592d8ad36f5fa0233f8c1fd72b5ac;p=thirdparty%2Fbinutils-gdb.git Add test for continuing with some threads running This testcase would have helped catch some issues I ran into while working on the Windows non-stop support. It tests continuing all threads in all-stop mode when at least one thread is already running. Change-Id: Ie8cd5c67502aed3c3b159d5eb5eeedee2f84eeef --- diff --git a/gdb/testsuite/gdb.threads/continue-some-running.c b/gdb/testsuite/gdb.threads/continue-some-running.c new file mode 100644 index 00000000000..9e0d73e08a0 --- /dev/null +++ b/gdb/testsuite/gdb.threads/continue-some-running.c @@ -0,0 +1,76 @@ +/* This testcase is part of GDB, the GNU debugger. + + Copyright 2025 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . */ + +#include +#include +#include + +volatile int wait_for_gdb = 1; + +#define NUM_THREADS 3 + +static pthread_barrier_t threads_started_barrier; + +static pthread_barrier_t may_exit_barrier; + +static void * +thread_func (void *arg) +{ + /* Wait until all threads have started. */ + pthread_barrier_wait (&threads_started_barrier); + + /* Wait until the main thread lets us exit. */ + pthread_barrier_wait (&may_exit_barrier); + + return NULL; +} + +static void +threads_started (void) +{ +} + +int +main (void) +{ + pthread_t thread[NUM_THREADS]; + int i; + + alarm (30); + + pthread_barrier_init (&threads_started_barrier, NULL, NUM_THREADS + 1); + pthread_barrier_init (&may_exit_barrier, NULL, NUM_THREADS + 1); + + for (i = 0; i < NUM_THREADS; i++) + { + int ret; + + ret = pthread_create (&thread[i], NULL, thread_func, NULL); + assert (ret == 0); + } + + pthread_barrier_wait (&threads_started_barrier); + + threads_started (); + + pthread_barrier_wait (&may_exit_barrier); + + for (i = 0; i < NUM_THREADS; i++) + pthread_join (thread[i], NULL); + + return 0; +} diff --git a/gdb/testsuite/gdb.threads/continue-some-running.exp b/gdb/testsuite/gdb.threads/continue-some-running.exp new file mode 100644 index 00000000000..144aad1fd2e --- /dev/null +++ b/gdb/testsuite/gdb.threads/continue-some-running.exp @@ -0,0 +1,52 @@ +# Copyright 2025 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Test continuing in all-stop mode when one thread is already running. + +standard_testfile .c + +if { [build_executable "failed to prepare" $testfile $srcfile \ + {debug pthreads}] \ + == -1 } { + return +} + +proc test {} { + clean_restart $::binfile + + if ![runto threads_started] { + return + } + + delete_breakpoints + + # Set a non-main thread running, while everything else is left + # stopped. + gdb_test_no_output "set scheduler-locking on" + + gdb_test "thread 2" ".*" "switch to secondary thread" + + gdb_test -no-prompt-anchor "continue &" "Continuing\\." + + # Now resume all threads, while there is already one thread + # running. + gdb_test "thread 1" ".*" "switch to main thread" + + gdb_test_no_output "set scheduler-locking off" + + gdb_continue_to_end "" continue 1 +} + +test