* config/tc-arm.c (arm_cpus): Add entry for ARM Cortex-M0.
[binutils-gdb.git] / gdb / testsuite / gdb.threads / thread_events.exp
blob38ee50b16579c18d347ec61d67897d149a4a598c
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 {
27     return
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 {
33     return
36 if $tracelevel then {
37         strace $tracelevel
40 set prms_id 0
41 set bug_id 0
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}"]] != "" } {
48     return -1
51 proc gdb_test_thread_start {messages_enabled command pattern message} {
52   global gdb_prompt
54   if { $messages_enabled } {
55     set events_expected 1
56   } else {
57     set events_expected 0
58   }
59   set events_seen 0
61   return [gdb_test_multiple $command $message {
62     -re "\\\[New Thread \[^\]\]*\\\]\r\n" {
63       incr events_seen;
64       exp_continue;
65     }
66     -re "\[\r\n\]*($pattern)\[\r\n\]+$gdb_prompt $" {
67       if { $events_seen != $events_expected } {
68         fail "$message (saw $events_seen, expected $events_expected)"
69       } else {
70         pass "$message"
71       }
72     }
73   }]
76 proc gdb_test_thread_exit {messages_enabled command pattern message} {
77   global gdb_prompt
79   if { $messages_enabled } {
80     set events_expected 1
81   } else {
82     set events_expected 0
83   }
84   set events_seen 0
86   return [gdb_test_multiple $command $message {
87     -re "\\\[Thread \[^\]\]* exited\\\]\r\n" {
88       incr events_seen
89       exp_continue;
90     }
91     -re "\[\r\n\]*($pattern)\[\r\n\]+$gdb_prompt $" {
92       if { $events_seen != $events_expected } {
93         fail "$message (saw $events_seen, expected $events_expected)"
94       } else {
95         pass "$message"
96       }
97     }
98   }]
101 proc test_thread_messages {enabled} {
102   global srcdir subdir binfile srcfile
104   if { $enabled } {
105     set enabled_string "with messages enabled"
106   } else {
107     set enabled_string "with messages disabled"
108   }
110   gdb_start
111   gdb_reinitialize_dir $srcdir/$subdir
112   gdb_load ${binfile}
114   if { $enabled } {
115      gdb_test "set print thread-events on"
116   } else {
117      gdb_test "set print thread-events off"
118   }
120   # The initial thread may log a 'New Thread' message, but we don't
121   # check for it.
122   if ![runto_main] then {
123      fail "Can't run to main $enabled_string"
124      return 1
125   }
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"
146   delete_breakpoints
148   gdb_exit
151 test_thread_messages 0
152 test_thread_messages 1