Automatic date update in version.in
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.trace / tspeed.exp
CommitLineData
e2882c85 1# Copyright 2011-2018 Free Software Foundation, Inc.
3c9057f3
SS
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
16load_lib "trace-support.exp"
17
497a5eb0 18standard_testfile
3c9057f3 19set executable $testfile
3c9057f3 20
c0d4d1c0 21set ipalib [get_in_proc_agent]
3c9057f3
SS
22
23if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
f9c49bff 24 executable [concat {debug c} shlib=$ipalib]] != "" } {
84c93cd5 25 untested "failed to compile"
3c9057f3
SS
26 return -1
27}
28
29# Typically we need a little extra time for this test.
30set timeout 180
31
32set ws "\[\r\n\t \]+"
33set cr "\[\r\n\]+"
34
35#
36# Utility procs
37#
38
39proc prepare_for_trace_test {} {
40 global executable
f9c49bff 41 global ipalib
3c9057f3
SS
42
43 clean_restart $executable
c708f4d2 44 gdb_load_shlib $ipalib
3c9057f3
SS
45
46 runto_main
47
48 set testline [gdb_get_line_number "set pre-run breakpoint here"]
49
50 gdb_test "break $testline" ".*" ""
51
52 set testline [gdb_get_line_number "set post-run breakpoint here"]
53
54 gdb_test "break $testline" ".*" ""
55}
56
57proc run_trace_experiment {} {
58
59 gdb_test "continue" \
60 ".*Breakpoint \[0-9\]+, main .*" \
61 "advance to trace begin"
62
63 gdb_test_no_output "tstart" "start trace experiment"
64
65 gdb_test "continue" \
66 ".*Breakpoint \[0-9\]+, main .*" \
67 "advance through tracing"
68
69 gdb_test "tstatus" ".*Trace .*" "check on trace status"
70
71 gdb_test "tstop" "" ""
72}
73
74proc gdb_slow_trace_speed_test { } {
75
76 gdb_delete_tracepoints
77
4ec70201 78 gdb_test "print iters = init_iters" ".* = .*"
3c9057f3
SS
79
80 set testline [gdb_get_line_number "set tracepoint here"]
81
82 gdb_test "trace $testline if (globfoo != 12 && globfoo2 == 45)" \
83 "Tracepoint \[0-9\]+ at .*" \
84 "set slow tracepoint"
85
86 # Begin the test.
87 run_trace_experiment
88}
89
90proc gdb_fast_trace_speed_test { } {
968643aa 91 global gdb_prompt
3c9057f3
SS
92
93 gdb_delete_tracepoints
94
4ec70201 95 gdb_test "print iters = init_iters" ".* = .*"
3c9057f3
SS
96
97 set run_ftrace 0
98
99 set testline [gdb_get_line_number "set tracepoint here"]
100
101 gdb_test_multiple "ftrace $testline if (globfoo != 12 && globfoo2 == 45)" \
102 "set conditional fast tracepoint" {
968643aa 103 -re "Fast tracepoint \[0-9\]+ at .*\r\n$gdb_prompt $" {
3c9057f3
SS
104 pass "set conditional fast tracepoint, done"
105 set run_ftrace 1
106 }
968643aa 107 -re "May not have a fast tracepoint at .*\r\n$gdb_prompt $" {
3c9057f3
SS
108 pass "set conditional fast tracepoint, not allowed at line"
109 }
110 }
111
112 # If the fast tracepoint couldn't be set, don't bother with the run.
113 if { $run_ftrace == 1 } then {
114
115 # Begin the test.
116 run_trace_experiment
117 }
118}
119
120proc gdb_trace_collection_test {} {
121
122 prepare_for_trace_test
123
124 gdb_slow_trace_speed_test
125
126 gdb_fast_trace_speed_test
127}
128
129clean_restart $executable
c708f4d2
AB
130gdb_load_shlib $ipalib
131
3c9057f3
SS
132runto_main
133
3c9057f3 134if { ![gdb_target_supports_trace] } then {
bc6c7af4 135 unsupported "current target does not support trace"
ae59b1da 136 return 1
3c9057f3
SS
137}
138
139# Body of test encased in a proc so we can return prematurely.
140gdb_trace_collection_test
This page took 0.776102 seconds and 4 git commands to generate.