2007-12-17 12:32:23 +00:00
|
|
|
# This testcase is part of GDB, the GNU debugger.
|
|
|
|
|
2014-01-01 03:54:24 +00:00
|
|
|
# Copyright 2007-2014 Free Software Foundation, Inc.
|
2007-12-17 12:32:23 +00:00
|
|
|
|
|
|
|
# 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 <http://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
# watch-thread_num.exp Test thread <thread_num> parameter for
|
|
|
|
# watch commands.
|
|
|
|
#
|
|
|
|
|
2010-10-19 21:29:23 +00:00
|
|
|
# This test verifies that a watchpoint is detected in the proper thread
|
|
|
|
# so the test is only meaningful on a system with hardware watchpoints.
|
2011-02-21 14:57:38 +00:00
|
|
|
if {[skip_hw_watchpoint_tests]} {
|
|
|
|
return 0
|
2010-10-19 21:29:23 +00:00
|
|
|
}
|
|
|
|
|
test suite update - gdb.base/[t-z]
Convert files gdb.base/[t-z]*.exp to use standard_output_file et al.
* gdb.base/testenv.exp, gdb.base/tui-layout.exp,
gdb.base/twice.exp, gdb.base/type-opaque.exp, gdb.base/unload.exp,
gdb.base/unwindonsignal.exp, gdb.base/valgrind-db-attach.exp,
gdb.base/valgrind-infcall.exp, gdb.base/value-double-free.exp,
gdb.base/varargs.exp, gdb.base/watch-cond-infcall.exp,
gdb.base/watch-cond.exp, gdb.base/watch-non-mem.exp,
gdb.base/watch-read.exp, gdb.base/watch-vfork.exp,
gdb.base/watch_thread_num.exp, gdb.base/watchpoint-cond-gone.exp,
gdb.base/watchpoint-delete.exp, gdb.base/watchpoint-hw.exp,
gdb.base/watchpoint-solib.exp, gdb.base/watchpoint.exp,
gdb.base/watchpoints.exp, gdb.base/wchar.exp, gdb.base/whatis.exp:
Use standard_testfile, standard_output_file, prepare_for_testing,
clean_restart.
2013-06-27 19:00:47 +00:00
|
|
|
standard_testfile .c
|
2007-12-17 12:32:23 +00:00
|
|
|
|
|
|
|
# What compiler are we using?
|
|
|
|
#
|
2012-06-21 20:46:25 +00:00
|
|
|
if [get_compiler_info] {
|
2007-12-17 12:32:23 +00:00
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
2008-04-04 22:59:28 +00:00
|
|
|
if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
|
|
|
|
return -1
|
2007-12-17 12:32:23 +00:00
|
|
|
}
|
|
|
|
|
test suite update - gdb.base/[t-z]
Convert files gdb.base/[t-z]*.exp to use standard_output_file et al.
* gdb.base/testenv.exp, gdb.base/tui-layout.exp,
gdb.base/twice.exp, gdb.base/type-opaque.exp, gdb.base/unload.exp,
gdb.base/unwindonsignal.exp, gdb.base/valgrind-db-attach.exp,
gdb.base/valgrind-infcall.exp, gdb.base/value-double-free.exp,
gdb.base/varargs.exp, gdb.base/watch-cond-infcall.exp,
gdb.base/watch-cond.exp, gdb.base/watch-non-mem.exp,
gdb.base/watch-read.exp, gdb.base/watch-vfork.exp,
gdb.base/watch_thread_num.exp, gdb.base/watchpoint-cond-gone.exp,
gdb.base/watchpoint-delete.exp, gdb.base/watchpoint-hw.exp,
gdb.base/watchpoint-solib.exp, gdb.base/watchpoint.exp,
gdb.base/watchpoints.exp, gdb.base/wchar.exp, gdb.base/whatis.exp:
Use standard_testfile, standard_output_file, prepare_for_testing,
clean_restart.
2013-06-27 19:00:47 +00:00
|
|
|
clean_restart ${binfile}
|
2007-12-17 12:32:23 +00:00
|
|
|
|
|
|
|
if { ![runto main] } then {
|
|
|
|
fail "run to main"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
gdb_test "watch shared_var thread 0" "Unknown thread 0\." "Watchpoint on invalid thread"
|
|
|
|
gdb_test "watch shared_var thread" "A syntax error in expression, near `thread'\." "Invalid watch syntax"
|
|
|
|
|
2010-06-01 21:29:21 +00:00
|
|
|
gdb_test "Next 5" ".*"
|
2007-12-17 12:32:23 +00:00
|
|
|
|
2007-12-19 14:40:37 +00:00
|
|
|
gdb_test "break thread_function" "Breakpoint \[0-9\].*" \
|
|
|
|
"Set breakpoint at thread_function"
|
2007-12-17 12:32:23 +00:00
|
|
|
|
2007-12-19 14:40:37 +00:00
|
|
|
gdb_test "continue" ".*Breakpoint 2.*" "Stopped in thread_function"
|
|
|
|
|
2010-05-27 23:44:51 +00:00
|
|
|
gdb_test_multiple "thread" "Thread command" {
|
|
|
|
-re ".*Current thread is (\[0-9\]*).*$gdb_prompt $" {
|
|
|
|
pass "Thread command"
|
|
|
|
}
|
2007-12-19 14:40:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
set thread_num "$expect_out(1,string)"
|
|
|
|
|
2010-06-01 21:29:21 +00:00
|
|
|
gdb_test_no_output "disable 2" "Disable breakpoint 2"
|
2010-10-19 21:29:23 +00:00
|
|
|
gdb_test "watch shared_var thread $thread_num" "Hardware watchpoint 3: shared_var" "Watchpoint on shared variable"
|
2007-12-19 14:40:37 +00:00
|
|
|
gdb_test "info breakpoint 3" "stop only in thread $thread_num"
|
|
|
|
|
|
|
|
for {set i 1} {$i <= 10} {incr i 1} {
|
2008-05-13 21:17:18 +00:00
|
|
|
set watchpoint "Watchpoint triggered iteration $i"
|
|
|
|
set check "Check thread that triggered iteration $i"
|
|
|
|
|
2010-10-19 21:29:23 +00:00
|
|
|
gdb_test "continue" "Hardware watchpoint 3: shared_var.*" $watchpoint
|
2008-09-04 00:51:04 +00:00
|
|
|
gdb_test "thread" ".*Current thread is $thread_num .*" $check
|
2007-12-17 12:32:23 +00:00
|
|
|
}
|
|
|
|
|