]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Add test for continuing with some threads running
authorPedro Alves <pedro@palves.net>
Fri, 24 Jan 2025 18:10:50 +0000 (18:10 +0000)
committerPedro Alves <pedro@palves.net>
Mon, 9 Jun 2025 17:09:10 +0000 (18:09 +0100)
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

gdb/testsuite/gdb.threads/continue-some-running.c [new file with mode: 0644]
gdb/testsuite/gdb.threads/continue-some-running.exp [new file with mode: 0644]

diff --git a/gdb/testsuite/gdb.threads/continue-some-running.c b/gdb/testsuite/gdb.threads/continue-some-running.c
new file mode 100644 (file)
index 0000000..9e0d73e
--- /dev/null
@@ -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 <http://www.gnu.org/licenses/>.  */
+
+#include <pthread.h>
+#include <assert.h>
+#include <unistd.h>
+
+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 (file)
index 0000000..144aad1
--- /dev/null
@@ -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 <http://www.gnu.org/licenses/>.
+
+# 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