* thread.c (do_restore_current_thread_cleanup): Redo test for
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / gdb669.exp
CommitLineData
0fb0cc75 1# Copyright 2002, 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
d1a2f204
KS
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
d1a2f204 6# (at your option) any later version.
e22f8b7c 7#
d1a2f204
KS
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#
d1a2f204 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/>.
d1a2f204 15
d1a2f204
KS
16# This file checks for the bug gdb/669, where the console
17# command "info threads" and the MI command "-thread-list-ids"
18# return different threads in the system.
19
20# This only works with native configurations
21if {![isnative]} {
22 return
23}
24
25load_lib mi-support.exp
26set MIFLAGS "-i=mi"
27
28gdb_exit
29if {[mi_gdb_start]} {
30 continue
31}
32
d1a2f204
KS
33#
34# Start here
35#
36set testfile "pthreads"
37set srcfile "$testfile.c"
19ac3974 38set binfile "$objdir/$subdir/gdb669-$testfile"
d1a2f204 39
dc62bfc2 40set options [list debug incdir=$objdir]
2bd4c7b1
MK
41if {[gdb_compile_pthreads "$srcdir/$subdir/$srcfile" $binfile executable $options] != "" } {
42 return -1
d1a2f204
KS
43}
44
d1a2f204
KS
45mi_run_to_main
46check_mi_and_console_threads "at main"
47
48for {set i 0} {$i < 4} {incr i} {
49 mi_next "next, try $i"
50 check_mi_and_console_threads "try $i"
51}
52
53mi_gdb_exit
54
This page took 0.666092 seconds and 4 git commands to generate.