[gdb/symtab] Fix gdb.base/fission-macro.exp with unix/-m32
[binutils-gdb.git] / gdb / testsuite / gdb.threads / local-watch-wrong-thread.exp
blobfcefb2b9098e028dec2529d7a39a356b71a2f372
1 # This testcase is part of GDB, the GNU debugger.
3 # Copyright 2009-2024 Free Software Foundation, Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 # This test verifies that a local watchpoint isn't deleted when a
19 # thread other than the thread the local watchpoint was set in stops
20 # for a breakpoint.
22 require allow_hw_watchpoint_multi_tests
24 standard_testfile
25 if {[gdb_compile_pthreads \
26          "${srcdir}/${subdir}/${srcfile}" \
27          "${binfile}" executable {debug} ] != "" } {
28     return -1
31 clean_restart ${binfile}
33 gdb_test_no_output "set can-use-hw-watchpoints 1" ""
35 if {![runto_main]} {
36     return
39 set inc_line_1 [gdb_get_line_number "Loop increment 1"]
40 set inc_line_2 [gdb_get_line_number "Loop increment 2"]
41 set bkpt_here [gdb_get_line_number "set breakpoint here"]
43 # Run to the loop within thread_function0, so we can set our local
44 # watchpoint.
45 gdb_test "break ${srcfile}:${inc_line_1}" \
46     "Breakpoint 2 at .*: file .*${srcfile}, line .*" \
47     "breakpoint on thread_function0"
49 gdb_test "continue" \
50     ".*Breakpoint 2.*thread_function0.*" \
51     "continue to thread_function0"
53 delete_breakpoints
55 # Set the local watchpoint, and confirm that it traps as expected.
56 gdb_test "watch *myp" \
57     "Hardware watchpoint 3\: \\*myp.*" \
58     "set local watchpoint on *myp"
60 gdb_test "continue" \
61     "Hardware watchpoint.*Old value.*New value.*thread_function0.*" \
62     "local watchpoint triggers"
64 delete_breakpoints
66 # Recreate the watchpoint, but this time with a condition we know
67 # won't trigger.  This is so the watchpoint is inserted, and the
68 # target reports events, but GDB doesn't stop for them.  We want to
69 # hit the breakpoints on the other thread, and make sure this
70 # watchpoint isn't deleted then.
71 gdb_test "watch *myp if trigger != 0" \
72     "Hardware watchpoint 4\: \\*myp.*" \
73     "set local watchpoint on *myp, with false conditional"
75 # Run to a breakpoint on a different thread.  The previous local
76 # watchpoint should not be deleted with the standard 'the program has
77 # left the block in which its expression is valid', because the
78 # thread_function0 thread should still be running in the loop.
79 gdb_test "break ${srcfile}:${inc_line_2}" \
80     "Breakpoint 5 at .*: file .*${srcfile}, line .*" \
81     "breakpoint on the other thread"
83 gdb_test "continue" \
84     "Breakpoint 5, thread_function1.*" \
85     "the other thread stopped on breakpoint"
87 # Delete the new breakpoint, we don't need it anymore.
88 gdb_test_no_output "delete 5" ""
90 # Check if the local watchpoint hasn't been deleted (is still listed).
91 # This is simpler to check than expecting 'the program has left ...',
92 # and, is immune to string changes in that warning.
93 gdb_test "info breakpoints" \
94     ".*4.*hw watchpoint.*keep.*y.*\\*myp.*" \
95     "local watchpoint is still in breakpoint list"
97 # Make the watchpoint condition eval true.
98 gdb_test_no_output "set trigger=1" "let local watchpoint trigger"
100 gdb_test "continue" \
101     "Hardware watchpoint.*Old value.*New value.*thread_function0.*" \
102     "local watchpoint still triggers"
104 # Confirm that the local watchpoint is indeed deleted when
105 # thread_function0 returns.
106 gdb_test_no_output "set *myp=0" "let thread_function0 return"
108 gdb_test "break ${srcfile}:${bkpt_here}" \
109     "Breakpoint 6 at .*: file .*${srcfile}, line .*" \
110     "breakpoint on thread_function0's caller"
112 gdb_test "continue" \
113     ".*Watchpoint.*deleted.*" \
114     "local watchpoint automatically deleted"