1 # Copyright (C) 2007-2015 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 {
39 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable debug] != "" } {
43 proc gdb_test_thread_start {messages_enabled command pattern message} {
46 if { $messages_enabled } {
53 return [gdb_test_multiple $command $message {
54 -re "\\\[New Thread \[^\]\]*\\\]\r\n" {
58 -re "\[\r\n\]*($pattern)\[\r\n\]+$gdb_prompt $" {
59 if { $events_seen != $events_expected } {
60 fail "$message (saw $events_seen, expected $events_expected)"
68 proc gdb_test_thread_exit {messages_enabled command pattern message} {
71 if { $messages_enabled } {
78 return [gdb_test_multiple $command $message {
79 -re "\\\[Thread \[^\]\]* exited\\\]\r\n" {
83 -re "\[\r\n\]*($pattern)\[\r\n\]+$gdb_prompt $" {
84 if { $events_seen != $events_expected } {
85 fail "$message (saw $events_seen, expected $events_expected)"
93 proc test_thread_messages {enabled} {
94 global srcdir subdir binfile srcfile
97 set enabled_string "with messages enabled"
99 set enabled_string "with messages disabled"
103 gdb_reinitialize_dir $srcdir/$subdir
107 gdb_test "set print thread-events on"
109 gdb_test "set print thread-events off"
112 # The initial thread may log a 'New Thread' message, but we don't
114 if ![runto_main] then {
115 fail "Can't run to main $enabled_string"
119 gdb_test "break threadfunc" \
120 "Breakpoint.*at.* file .*$srcfile, line.*" \
121 "breakpoint at threadfunc $enabled_string"
122 gdb_test "break after_join_func" \
123 "Breakpoint.*at.* file .*$srcfile, line.*" \
124 "breakpoint at after_join_func $enabled_string"
126 # continue to threadfunc breakpoint. A thread will start.
127 # Expect to see a thread start message, if messages are enabled.
128 gdb_test_thread_start $enabled "continue" \
129 ".*Breakpoint .*,.*threadfunc.*at.*$srcfile:.*" \
130 "continue to threadfunc $enabled_string"
132 # continue to after_join_func breakpoint. A thread will exit.
133 # Expect to see a thread exit message, if messages are enabled.
134 gdb_test_thread_exit $enabled "continue" \
135 ".*Breakpoint .*,.*after_join_func.*at.*$srcfile:.*" \
136 "continue to after_join_func $enabled_string"
143 test_thread_messages 0
144 test_thread_messages 1