Move strace -m/explicit location test to strace.exp
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.trace / while-dyn.exp
1 # Copyright 1998-2015 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
21 gdb_exit
22 gdb_start
23
24 standard_testfile actions.c
25 set executable $testfile
26 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
27 executable {debug nowarnings}] != "" } {
28 untested while-dyn.exp
29 return -1
30 }
31 gdb_load $binfile
32 gdb_test "tstop" ".*" ""
33 gdb_test "tfind none" ".*" ""
34 runto_main
35 gdb_reinitialize_dir $srcdir/$subdir
36
37 if { ![gdb_target_supports_trace] } then {
38 unsupported "Current target does not support trace"
39 return 1
40 }
41
42 #
43 # test while-stepping dynamically (live target)
44 #
45
46 if [is_amd64_regs_target] {
47 set fpreg "\$rbp"
48 } elseif [is_x86_like_target] {
49 set fpreg "\$ebp"
50 } elseif [is_aarch64_target] {
51 set fpreg "\$x29"
52 } else {
53 set fpreg "\$fp"
54 }
55
56 proc test_while_stepping { while_stepping } {
57 global fpreg
58 global decimal
59 global gdb_prompt
60 global executable
61
62 clean_restart $executable
63
64 gdb_test "tstop" ".*" ""
65 gdb_test "tfind none" ".*" ""
66 runto_main
67
68 ## verify number of trace frames collected matches stepcount
69
70 gdb_delete_tracepoints
71 gdb_test "trace gdb_c_test" \
72 "Tracepoint $decimal at .*" \
73 "$while_stepping: Set tracepoint at gdb_c_test"
74
75 gdb_trace_setactions "5.12: define $while_stepping <stepcount>" \
76 "" \
77 "collect $fpreg" "^$" \
78 "$while_stepping 5" "^$" \
79 "collect p" "^$" \
80 "end" "^$" \
81 "end" ""
82
83 gdb_test "tstart" ".*" ""
84
85 gdb_test "break end" ".*" ""
86 gdb_test "continue" \
87 "Continuing.*Breakpoint $decimal, end.*" \
88 "$while_stepping: run trace experiment"
89
90 gdb_test "tstop" ".*" ""
91
92 gdb_tfind_test "$while_stepping: frame 5 should be the last one collected" "5" "5"
93
94 set test "$while_stepping: trace stopped after 5 stepping frames"
95 gdb_test_multiple "tfind 6" "$test" {
96 -re "failed to find.*$gdb_prompt $" {
97 pass "$test"
98 }
99 -re ".*$gdb_prompt $" {
100 fail "$test"
101 }
102 }
103
104 gdb_test "tfind none" ".*" ""
105 }
106
107 # Test all while-stepping aliases.
108
109 test_while_stepping "while-stepping"
110 test_while_stepping "stepping"
111 test_while_stepping "ws"
This page took 0.03215 seconds and 4 git commands to generate.