Upload Tizen:Base source
[external/gdb.git] / gdb / testsuite / gdb.trace / while-dyn.exp
1 #   Copyright 1998, 2007, 2008, 2009, 2010 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 Michael Snyder (msnyder@cygnus.com)
17
18 load_lib "trace-support.exp"
19
20 if $tracelevel then {
21     strace $tracelevel
22 }
23
24
25 gdb_exit
26 gdb_start
27
28 set testfile "actions"
29 set srcfile $testfile.c
30 set executable while-dyn
31 set binfile $objdir/$subdir/$executable
32 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
33           executable {debug nowarnings}] != "" } {
34     untested while-dyn.exp
35     return -1
36 }
37 gdb_load $binfile
38 gdb_test "tstop"       ".*" ""
39 gdb_test "tfind none"  ".*" ""
40 runto_main
41 gdb_reinitialize_dir $srcdir/$subdir
42
43 # We generously give ourselves one "pass" if we successfully 
44 # detect that this test cannot be run on this target!
45 if { ![gdb_target_supports_trace] } then {
46     pass "Current target does not support trace"
47     return 1;
48 }
49
50 #
51 # test while-stepping dynamically (live target)
52 #
53
54 if [istarget "x86_64-*"] then {
55     set fpreg "\$rbp"
56 } elseif [istarget "i?86-*"] then {
57     set fpreg "\$ebp"
58 } else {
59     set fpreg "\$fp"
60 }
61
62 proc test_while_stepping { while_stepping } {
63     global fpreg
64     global decimal
65     global gdb_prompt
66     global executable
67
68     clean_restart $executable
69
70     gdb_test "tstop" ".*" ""
71     gdb_test "tfind none" ".*" ""
72     runto_main
73
74     ## verify number of trace frames collected matches stepcount
75
76     gdb_delete_tracepoints
77     gdb_test "trace gdb_c_test" \
78         "Tracepoint $decimal at .*" \
79         "$while_stepping: Set tracepoint at gdb_c_test"
80
81     gdb_trace_setactions "5.12: define $while_stepping <stepcount>" \
82         "" \
83         "collect $fpreg" "^$" \
84         "$while_stepping 5" "^$" \
85         "collect p" "^$" \
86         "end" "^$" \
87         "end" ""
88
89     gdb_test "tstart" ".*" ""
90
91     gdb_test "break end" ".*" ""
92     gdb_test "continue" \
93         "Continuing.*Breakpoint $decimal, end.*" \
94         "$while_stepping: run trace experiment"
95
96     gdb_test "tstop" ".*" ""
97
98     gdb_tfind_test "$while_stepping: frame 5 should be the last one collected" "5" "5"
99
100     set test "$while_stepping: trace stopped after 5 stepping frames"
101     gdb_test_multiple "tfind 6" "$test" {
102         -re "failed to find.*$gdb_prompt $" {
103             pass "$test"
104         }
105         -re ".*$gdb_prompt $" {
106             fail "$test"
107         }
108     }
109
110     gdb_test "tfind none" ".*" ""
111 }
112
113 # Test all while-stepping aliases.
114
115 test_while_stepping "while-stepping"
116 test_while_stepping "stepping"
117 test_while_stepping "ws"