From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1879) id 7447E3858C27; Tue, 5 Apr 2022 12:02:06 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7447E3858C27 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Simon Marchi To: gdb-cvs@sourceware.org Subject: [binutils-gdb] gdb/testsuite: fix intermittent failures in gdb.mi/mi-cmd-user-context.exp X-Act-Checkin: binutils-gdb X-Git-Author: Simon Marchi X-Git-Refname: refs/heads/master X-Git-Oldrev: d5ce6f2dcacf9809fb7a29a69c4b98e0320c3c94 X-Git-Newrev: 9b571e28984a7fb757962be477322f89d2366c80 Message-Id: <20220405120206.7447E3858C27@sourceware.org> Date: Tue, 5 Apr 2022 12:02:06 +0000 (GMT) X-BeenThere: gdb-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Apr 2022 12:02:06 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D9b571e28984a= 7fb757962be477322f89d2366c80 commit 9b571e28984a7fb757962be477322f89d2366c80 Author: Simon Marchi Date: Mon Apr 4 12:08:22 2022 -0400 gdb/testsuite: fix intermittent failures in gdb.mi/mi-cmd-user-context.= exp =20 I got failures like this once on a CI: =20 frame^M &"frame\n"^M ~"#0 child_sub_function () at /home/jenkins/workspace/binutils-gdb= _master_build/arch/amd64/target_board/unix/src/binutils-gdb/gdb/testsuite/g= db.mi/user-selected-context-sync.c:33\n"^M ~"33\t dummy =3D !dummy; /* thread loop line */\n"^M ^done^M (gdb) ^M FAIL: gdb.mi/mi-cmd-user-context.exp: frame 1 (unexpected output) =20 The problem is that the test expects the following regexp: =20 ".*#0 0x.*" =20 And that typically works, when the output of the frame command looks like: =20 #0 0x00005555555551bb in child_sub_function () at ... =20 Note the lack of hexadecimal address in the failing case. Whether or not the hexadecimal address is printed (roughly) depends on whether the current PC is at the beginning of a line. So depending on where thread 2 was when GDB stopped it (after thread 1 hit its breakpoint), we can get either output. Adjust the regexps to not expect an hexadecimal prefix (0x) but a function name instead (either child_sub_function or child_function). That one is always printed, and is also a good check that we are in the frame we expect. =20 Note that for test "frame 5", we are showing a pthread frame (on my system), so the function name is internal to pthread, not something we can rely on. In that case, it's almost certain that we are not at the beginning of a line, or that we don't have debug info, so I think it's fine to expect the hex prefix. =20 And for test "frame 6", it's ok to _not_ expect a hex prefix (what the test currently does), since we are showing thread 1, which has hit a breakpoint placed at the beginning of a line. =20 When testing this, Tom de Vries pointed out that the current test code doesn't ensure that the child threads are in child_sub_function when they are stopped. If the scheduler chooses so, it is possible for the child threads to be still in the pthread_barrier_wait or child_function functions when they get stopped. So that would be another racy failure waiting to happen. =20 The only way I can think of to ensure the child threads are in the child_sub_function function when they get stopped is to synchronize the threads using some variables instead of pthread_barrier_wait. So, replace the barrier with an array of flags (one per child thread). Each child thread flips its flag in child_sub_function to allow the main thread to make progress and eventually hit the breakpoint. =20 I copied user-selected-context-sync.c to a new mi-cmd-user-context.c and made modifications to that, to avoid interfering with user-selected-context-sync.exp. =20 Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=3D29025 Change-Id: I919673bbf9927158beb0e8b7e9e980b8d65eca90 Diff: --- gdb/testsuite/gdb.mi/mi-cmd-user-context.c | 73 ++++++++++++++++++++++++= ++++ gdb/testsuite/gdb.mi/mi-cmd-user-context.exp | 10 ++-- 2 files changed, 78 insertions(+), 5 deletions(-) diff --git a/gdb/testsuite/gdb.mi/mi-cmd-user-context.c b/gdb/testsuite/gdb= .mi/mi-cmd-user-context.c new file mode 100644 index 00000000000..bb74ab86b20 --- /dev/null +++ b/gdb/testsuite/gdb.mi/mi-cmd-user-context.c @@ -0,0 +1,73 @@ +/* This testcase is part of GDB, the GNU debugger. + + Copyright 2016-2022 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 + +#define NUM_THREADS 2 + +static volatile int unblock_main[NUM_THREADS]; + +static void +child_sub_function (int child_idx) +{ + volatile int dummy =3D 0; + + unblock_main[child_idx] =3D 1; + + while (1) + /* Dummy loop body to allow setting breakpoint. */ + dummy =3D !dummy; /* thread loop line */ +} + +static void * +child_function (void *args) +{ + int child_idx =3D (int) (uintptr_t) args; + + child_sub_function (child_idx); /* thread caller line */ + + return NULL; +} + +int +main (void) +{ + int i =3D 0; + pthread_t threads[NUM_THREADS]; + + /* Make the test exit eventually. */ + alarm (20); + + for (i =3D 0; i < NUM_THREADS; i++) + pthread_create (&threads[i], NULL, child_function, (void *) (uintptr_t= ) i); + + /* Wait for child threads to reach child_sub_function. */ + for (i =3D 0; i < NUM_THREADS; i++) + while (!unblock_main[i]) + ; + + volatile int dummy =3D 0; + while (1) + /* Dummy loop body to allow setting breakpoint. */ + dummy =3D !dummy; /* main break line */ + + return 0; +} diff --git a/gdb/testsuite/gdb.mi/mi-cmd-user-context.exp b/gdb/testsuite/g= db.mi/mi-cmd-user-context.exp index d7417d5ea7c..e5fccdd2308 100644 --- a/gdb/testsuite/gdb.mi/mi-cmd-user-context.exp +++ b/gdb/testsuite/gdb.mi/mi-cmd-user-context.exp @@ -18,7 +18,7 @@ =20 load_lib mi-support.exp =20 -standard_testfile user-selected-context-sync.c +standard_testfile =20 if {[build_executable $testfile.exp $testfile ${srcfile} "debug pthreads"]= =3D=3D -1} { untested "failed to compile" @@ -79,7 +79,7 @@ mi_gdb_test "thread" \ =20 # Check we're in frame 0. mi_gdb_test "frame" \ - ".*#0 0x.*" \ + ".*#0 .*child_sub_function .*" \ "frame 1" =20 # Ask about a different frame in the current thread, the current frame @@ -93,7 +93,7 @@ mi_gdb_test "thread" \ "info thread 6" =20 mi_gdb_test "frame" \ - ".*#0 0x.*" \ + ".*#0 .*child_sub_function.*" \ "frame 2" =20 =20 @@ -108,7 +108,7 @@ mi_gdb_test "thread" \ "info thread 7" =20 mi_gdb_test "frame" \ - ".*#0 0x.*" \ + ".*#0 .*child_sub_function.*" \ "frame 3" =20 # Select a different frame in the current thread. Despite the use of @@ -123,7 +123,7 @@ mi_gdb_test "thread" \ "info thread 8" =20 mi_gdb_test "frame" \ - ".*#1 0x.*" \ + ".*#1 .*child_function.*" \ "frame 4" =20 # Similar to the previous test, but this time the --frame option is