2012-01-16 Pedro Alves <palves@redhat.com>
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.threads / thread_check.exp
1 # Copyright (C) 2004, 2007-2012 Free Software Foundation, Inc.
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
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
7 #
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.
12 #
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/>.
15
16 # This file was written by Manoj Iyer. (manjo@austin.ibm.com)
17 # Test break points and single step on thread functions.
18 #
19 # Test Purpose:
20 # - Test that breakpoints, continue in a threaded application works.
21 # On powerpc64-unknown-linux-gnu system, running kernel version
22 # 2.6.5-7.71-pseries64 this test is known to fail due to kernel bug
23 # in ptrace system call.
24 #
25 # Test Strategy:
26 # - thread_check.c creates 2 threads
27 # - start gdb
28 # - create 2 breakpoints #1 main() #2 tf() (the thread function)
29 # - run gdb till #1 main() breakpoint is reached
30 # - continue to breakpoint #2 tf()
31 # - delete all breakpoints
32 # - exit gdb.
33
34
35 set testfile "thread_check"
36 set srcfile ${testfile}.c
37 set binfile ${objdir}/${subdir}/${testfile}
38
39 if {[gdb_compile_pthreads "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug "incdir=${objdir}"]] != "" } {
40 return -1
41 }
42
43
44 gdb_start
45 gdb_reinitialize_dir $srcdir/$subdir
46 gdb_load ${binfile}
47
48 if ![runto_main] then {
49 fail "Can't run to main"
50 return 1;
51 }
52
53
54 #
55 # set breakpoint at thread fucntion tf
56 #
57 gdb_test "break tf" \
58 "Breakpoint.*at.* file .*$srcfile, line.*" \
59 "breakpoint at tf"
60
61
62 #
63 #
64 # continue to tf() breakpoint #2
65 #
66 gdb_test "continue" \
67 ".*Breakpoint 2,.*tf.*at.*$srcfile:.*" \
68 "continue to tf"
69
70 #
71 # backtrace from thread function.
72 #
73 gdb_test "backtrace" \
74 "#0 .*tf .*at .*$srcfile:.*" \
75 "backtrace from thread function"
76
77
78 #
79 # delete all breakpoints
80 #
81 delete_breakpoints
82
83 #
84 # exit gdb
85 #
86 gdb_exit
This page took 0.032994 seconds and 5 git commands to generate.