1 # Copyright (C) 2007, 2009 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 # This file was written by Chris Demetriou (cgd@google.com).
17 # It tests printing of thread event (start, exit) information, and
18 # disabling of those messages.
20 # Note: the format of thread event messages (and also whether or not
21 # messages are printed and can be disabled) is dependent on the target
22 # thread support code.
24 # This test has only been verified with Linux targets, and would need
25 # to be generalized to support other targets
26 if ![istarget *-*-linux*] then {
30 # When using gdbserver, even on Linux, we don't get notifications
31 # about new threads. This is expected, so don't test for that.
32 if [is_remote target] then {
43 set testfile "thread_events"
44 set srcfile ${testfile}.c
45 set binfile ${objdir}/${subdir}/${testfile}
47 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug "incdir=${objdir}"]] != "" } {
51 proc gdb_test_thread_start {messages_enabled command pattern message} {
54 if { $messages_enabled } {
61 return [gdb_test_multiple $command $message {
62 -re "\\\[New Thread \[^\]\]*\\\]\r\n" {
66 -re "\[\r\n\]*($pattern)\[\r\n\]+$gdb_prompt $" {
67 if { $events_seen != $events_expected } {
68 fail "$message (saw $events_seen, expected $events_expected)"
76 proc gdb_test_thread_exit {messages_enabled command pattern message} {
79 if { $messages_enabled } {
86 return [gdb_test_multiple $command $message {
87 -re "\\\[Thread \[^\]\]* exited\\\]\r\n" {
91 -re "\[\r\n\]*($pattern)\[\r\n\]+$gdb_prompt $" {
92 if { $events_seen != $events_expected } {
93 fail "$message (saw $events_seen, expected $events_expected)"
101 proc test_thread_messages {enabled} {
102 global srcdir subdir binfile srcfile
105 set enabled_string "with messages enabled"
107 set enabled_string "with messages disabled"
111 gdb_reinitialize_dir $srcdir/$subdir
115 gdb_test "set print thread-events on"
117 gdb_test "set print thread-events off"
120 # The initial thread may log a 'New Thread' message, but we don't
122 if ![runto_main] then {
123 fail "Can't run to main $enabled_string"
127 gdb_test "break threadfunc" \
128 "Breakpoint.*at.* file .*$srcfile, line.*" \
129 "breakpoint at threadfunc $enabled_string"
130 gdb_test "break after_join_func" \
131 "Breakpoint.*at.* file .*$srcfile, line.*" \
132 "breakpoint at after_join_func $enabled_string"
134 # continue to threadfunc breakpoint. A thread will start.
135 # Expect to see a thread start message, if messages are enabled.
136 gdb_test_thread_start $enabled "continue" \
137 ".*Breakpoint .*,.*threadfunc.*at.*$srcfile:.*" \
138 "continue to threadfunc $enabled_string"
140 # continue to after_join_func breakpoint. A thread will exit.
141 # Expect to see a thread exit message, if messages are enabled.
142 gdb_test_thread_exit $enabled "continue" \
143 ".*Breakpoint .*,.*after_join_func.*at.*$srcfile:.*" \
144 "continue to after_join_func $enabled_string"
151 test_thread_messages 0
152 test_thread_messages 1