]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.mi/mi2-pthreads.exp
* gdb.mi/dw2-ref-missing-frame.exp: Use standard_testfile,
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi2-pthreads.exp
CommitLineData
0b302171 1# Copyright 2002-2005, 2007-2012 Free Software Foundation, Inc.
2fcf52f0
AC
2
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
2fcf52f0 6# (at your option) any later version.
e22f8b7c 7#
2fcf52f0
AC
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.
e22f8b7c 12#
2fcf52f0 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
2fcf52f0 15
2fcf52f0
AC
16# This file tests MI thread commands.
17# Specifically, we are testing the MI command set and the console (in MI)
18# command set ("interpreter-exec") and that the commands that are executed
19# via these command pathways are properly executed. Console commands
20# executed via MI should use MI output wrappers, MI event handlers, etc.
21
2fcf52f0
AC
22load_lib mi-support.exp
23set MIFLAGS "-i=mi2"
24
25gdb_exit
26if {[mi_gdb_start]} {
27 continue
28}
29
2fcf52f0
AC
30# This procedure tests the various thread commands in MI.
31proc check_mi_thread_command_set {} {
32
33 mi_runto done_making_threads
34
35 set thread_list [get_mi_thread_list "in check_mi_thread_command_set"]
36
37 mi_gdb_test "-thread-select" \
1b05df00 38 {\^error,msg="-thread-select: USAGE: threadnum."} \
2fcf52f0
AC
39 "check_mi_thread_command_set: -thread-select"
40
41 mi_gdb_test "-thread-select 123456789" \
39fb8e9e 42 {&.*\^error,msg="Thread ID 123456789 not known\."} \
2fcf52f0
AC
43 "check_mi_thread_command_set: -thread-select 123456789"
44
45 foreach thread $thread_list {
46 # line and file are optional.
47 # many of the threads are blocked in libc calls,
48 # and many people have libc's with no symbols.
49 mi_gdb_test "-thread-select $thread" \
50 "\\^done,new-thread-id=\"$thread\",frame={.*}(,line=\"(-)?\[0-9\]+\",file=\".*\")?" \
51 "check_mi_thread_command_set: -thread-select $thread"
52 }
53}
54
55#
56# Start here
57#
298a9cf0 58standard_testfile pthreads.c
2fcf52f0 59
298a9cf0 60set options [list debug]
2fcf52f0
AC
61if {[gdb_compile_pthreads "$srcdir/$subdir/$srcfile" $binfile executable $options] != "" } {
62 return -1
63}
64
65mi_gdb_reinitialize_dir $srcdir/$subdir
66mi_gdb_load $binfile
67
68check_mi_thread_command_set
69
70mi_gdb_exit
71