OSDN Git Service

630763b20a9b7f902f6e087b629d8ccdb811df46
[pf3gnuchains/pf3gnuchains4x.git] / gdb / testsuite / gdb.base / watch_thread_num.exp
1 # This testcase is part of GDB, the GNU debugger.
2
3 # Copyright 2007-2012 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 3 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, see <http://www.gnu.org/licenses/>.  */
17
18 # watch-thread_num.exp   Test thread <thread_num> parameter for
19 #                        watch commands.
20 #
21
22 # This test verifies that a watchpoint is detected in the proper thread
23 # so the test is only meaningful on a system with hardware watchpoints.
24 if {[skip_hw_watchpoint_tests]} {
25     return 0
26 }
27
28 set testfile watch_thread_num
29 set srcfile ${testfile}.c
30 set binfile ${objdir}/${subdir}/${testfile}
31
32 # What compiler are we using?
33 #
34 if [get_compiler_info ${binfile}] {
35     return -1
36 }
37
38 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
39     return -1
40 }
41
42 gdb_exit
43 gdb_start
44 gdb_reinitialize_dir $srcdir/$subdir
45 gdb_load ${binfile}
46
47 if { ![runto main] } then {
48    fail "run to main"
49    return
50 }
51
52 gdb_test "watch shared_var thread 0" "Unknown thread 0\." "Watchpoint on invalid thread"
53 gdb_test "watch shared_var thread" "A syntax error in expression, near `thread'\." "Invalid watch syntax"
54
55 gdb_test "Next 5" ".*"
56
57 gdb_test "break thread_function" "Breakpoint \[0-9\].*" \
58   "Set breakpoint at thread_function"
59
60 gdb_test "continue" ".*Breakpoint 2.*" "Stopped in thread_function"
61
62 gdb_test_multiple "thread" "Thread command" {
63     -re ".*Current thread is (\[0-9\]*).*$gdb_prompt $" {
64         pass "Thread command" 
65     }
66 }
67
68 set thread_num "$expect_out(1,string)"
69
70 gdb_test_no_output "disable 2" "Disable breakpoint 2"
71 gdb_test "watch shared_var thread $thread_num" "Hardware watchpoint 3: shared_var" "Watchpoint on shared variable"
72 gdb_test "info breakpoint 3" "stop only in thread $thread_num"
73
74 for {set i 1} {$i <= 10} {incr i 1} {
75     set watchpoint "Watchpoint triggered iteration $i"
76     set check "Check thread that triggered iteration $i"
77
78     gdb_test "continue" "Hardware watchpoint 3: shared_var.*" $watchpoint
79     gdb_test "thread" ".*Current thread is $thread_num .*" $check
80 }
81