2004-07-27 Jeff Johnston <jjohnstn@redhat.com>
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.threads / watchthreads.exp
1 # This testcase is part of GDB, the GNU debugger.
2
3 # Copyright 2004 Free Software Foundation, Inc.
4
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 2 of the License, or
8 # (at your option) any later version.
9 #
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.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 # Check that GDB can support multiple watchpoints across threads.
20
21 if $tracelevel {
22 strace $tracelevel
23 }
24
25 set prms_id 0
26 set bug_id 0
27
28 # This test verifies that a watchpoint is detected in the proper thread
29 # so the test is only meaningful on a system with hardware watchpoints.
30 if [target_info exists gdb,no_hardware_watchpoints] {
31 return 0;
32 }
33
34 set testfile "schedlock"
35 set srcfile ${testfile}.c
36 set binfile ${objdir}/${subdir}/${testfile}
37 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug "incdir=${objdir}"]] != "" } {
38 return -1
39 }
40
41 gdb_exit
42 gdb_start
43 gdb_reinitialize_dir $srcdir/$subdir
44 gdb_load ${binfile}
45
46 gdb_test "set can-use-hw-watchpoints 1" "" ""
47
48 #
49 # Run to `main' where we begin our tests.
50 #
51
52 if ![runto_main] then {
53 gdb_suppress_tests
54 }
55
56 set args_0 0
57 set args_1 0
58
59 # Watch values that will be modified by distinct threads.
60 gdb_test "watch args\[0\]" "Hardware watchpoint 2: args\\\[0\\\]"
61 gdb_test "watch args\[1\]" "Hardware watchpoint 3: args\\\[1\\\]"
62
63 # Loop and continue to allow both watchpoints to be triggered.
64 for {set i 0} {$i < 30} {incr i} {
65 set test_flag 0
66 gdb_test_multiple "continue" "threaded watch loop" {
67 -re "Hardware watchpoint 2: args\\\[0\\\].*Old value = 0.*New value = 1.*main \\\(\\\) at .*schedlock.c:21.*$gdb_prompt $"
68 { set args_0 1; set test_flag 1 }
69 -re "Hardware watchpoint 3: args\\\[1\\\].*Old value = 0.*New value = 1.*main \\\(\\\) at .*schedlock.c:21.*$gdb_prompt $"
70 { set args_1 1; set test_flag 1 }
71 -re "Hardware watchpoint 2: args\\\[0\\\].*Old value = $args_0.*New value = [expr $args_0+1].*in thread_function \\\(arg=0x0\\\) at .*schedlock.c:42.*$gdb_prompt $"
72 { set args_0 [expr $args_0+1]; set test_flag 1 }
73 -re "Hardware watchpoint 3: args\\\[1\\\].*Old value = $args_1.*New value = [expr $args_1+1].*in thread_function \\\(arg=0x1\\\) at .*schedlock.c:42.*$gdb_prompt $"
74 { set args_1 [expr $args_1+1]; set test_flag 1 }
75 }
76 # If we fail above, don't bother continuing loop
77 if { $test_flag == 0 } {
78 set i 30;
79 }
80 }
81
82 # Print success message if loop succeeded.
83 if { $test_flag == 1 } {
84 pass "threaded watch loop"
85 }
86
87 # Verify that we hit first watchpoint in main thread.
88 set message "first watchpoint on args\[0\] hit"
89 if { $args_0 > 0 } {
90 pass $message
91 } else {
92 fail $message
93 }
94
95 # Verify that we hit second watchpoint in main thread.
96 set message "first watchpoint on args\[1\] hit"
97 if { $args_1 > 0 } {
98 pass $message
99 } else {
100 fail $message
101 }
102
103 # Verify that we hit first watchpoint in child thread.
104 set message "watchpoint on args\[0\] hit in thread"
105 if { $args_0 > 1 } {
106 pass $message
107 } else {
108 fail $message
109 }
110
111 # Verify that we hit second watchpoint in child thread.
112 set message "watchpoint on args\[1\] hit in thread"
113 if { $args_1 > 1 } {
114 pass $message
115 } else {
116 fail $message
117 }
118
119 # Verify that all watchpoint hits are accounted for.
120 set message "combination of threaded watchpoints = 30"
121 if { [expr $args_0+$args_1] == 30 } {
122 pass $message
123 } else {
124 fail $message
125 }
This page took 0.059619 seconds and 4 git commands to generate.