aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom de Vries <tdevries@suse.de>2024-04-11 13:43:52 +0200
committerTom de Vries <tdevries@suse.de>2024-04-11 13:43:52 +0200
commit31c21e2c13d85793b525f74aa911eb28700ed89c (patch)
treeb5876e7f5eaf77d38a9d193f167e6ab08d189607 /gdb
parentcafca5eaa068eaaa3e3a2ffab356efb4714c2968 (diff)
downloadgdb-31c21e2c13d85793b525f74aa911eb28700ed89c.zip
gdb-31c21e2c13d85793b525f74aa911eb28700ed89c.tar.gz
gdb-31c21e2c13d85793b525f74aa911eb28700ed89c.tar.bz2
[gdb/testsuite] Fix gdb.threads/access-mem-running-thread-exit.exp with clang
When running test-case gdb.threads/access-mem-running-thread-exit.exp with clang, we run into: ... (gdb) print global_var = 555^M No symbol "global_var" in current context.^M (gdb) FAIL: gdb.threads/access-mem-running-thread-exit.exp: all-stop: \ access mem (write to global_var, inf=2, iter=1) ... The problem is that clang removes the unused variable. Fix this in the same way as done in commit b4f767131f7 ("Fix gdb.base/align-*.exp and Clang + LTO and AIX GCC"), by incrementing the variable. Tested on x86_64-linux with gcc and clang.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/gdb.threads/access-mem-running-thread-exit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.threads/access-mem-running-thread-exit.c b/gdb/testsuite/gdb.threads/access-mem-running-thread-exit.c
index 5902542..af05b13 100644
--- a/gdb/testsuite/gdb.threads/access-mem-running-thread-exit.c
+++ b/gdb/testsuite/gdb.threads/access-mem-running-thread-exit.c
@@ -102,6 +102,8 @@ main (void)
{
int i;
+ global_var++;
+
for (i = 0; i < 4; i++)
{
struct thread_arg *p;