Update copyright year range in header of all files managed by GDB
[binutils-gdb.git] / gdb / testsuite / gdb.trace / tspeed.exp
blob2449598d05824fe31331ba2b52588024f15eb2a2
1 # Copyright 2011-2023 Free Software Foundation, Inc.
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.
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.
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/>.
16 load_lib "trace-support.exp"
18 if {[skip_shlib_tests]} {
19     return 0
22 # Do not run if gdbsever debug is enabled - the output file is many Gb.
23 if [gdbserver_debug_enabled] {
24     return 0
27 standard_testfile
28 set executable $testfile
30 # Check that the target supports trace.
31 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile executable $options] != "" } {
32     untested "failed to compile"
33     return -1
36 clean_restart ${testfile}
38 if ![runto_main] {
39     return -1
42 if ![gdb_target_supports_trace] {
43     unsupported "target does not support trace"
44     return -1
47 # Compile the test case with the in-process agent library.
48 set ipalib [get_in_proc_agent]
50 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
51           executable [concat {debug c} shlib=$ipalib]] != "" } {
52     untested "failed to compile"
53     return -1
56 # Typically we need a little extra time for this test.
57 set timeout 180
59 set ws "\[\r\n\t \]+"
60 set cr "\[\r\n\]+"
63 # Utility procs
66 proc prepare_for_trace_test {} {
67     global executable
68     global ipalib
70     clean_restart $executable
71     gdb_load_shlib $ipalib
73     runto_main
75     set testline [gdb_get_line_number "set pre-run breakpoint here"]
77     gdb_test "break $testline" ".*" \
78         "break at pre-run"
80     set testline [gdb_get_line_number "set post-run breakpoint here"]
82     gdb_test "break $testline" ".*" \
83         "break at post-run"
86 proc run_trace_experiment {} {
88     gdb_test "continue" \
89         ".*Breakpoint \[0-9\]+, main .*" \
90         "advance to trace begin"
92     gdb_test_no_output "tstart" "start trace experiment"
94     gdb_test "continue" \
95         ".*Breakpoint \[0-9\]+, main .*" \
96         "advance through tracing"
98     gdb_test "tstatus" ".*Trace .*" "check on trace status"
100     gdb_test "tstop" "" ""
103 proc_with_prefix gdb_slow_trace_speed_test { } {
105     gdb_delete_tracepoints
107     gdb_test "print iters = init_iters" ".* = .*"
109     set testline [gdb_get_line_number "set tracepoint here"]
111     gdb_test "trace $testline if (globfoo != 12 && globfoo2 == 45)" \
112         "Tracepoint \[0-9\]+ at .*" \
113         "set slow tracepoint"
115     # Begin the test.
116     run_trace_experiment
119 proc_with_prefix gdb_fast_trace_speed_test { } {
120     global gdb_prompt
122     gdb_delete_tracepoints
124     gdb_test "print iters = init_iters" ".* = .*"
126     set run_ftrace 0
128     set testline [gdb_get_line_number "set tracepoint here"]
130     gdb_test_multiple "ftrace $testline if (globfoo != 12 && globfoo2 == 45)" \
131         "set conditional fast tracepoint" {
132             -re "Fast tracepoint \[0-9\]+ at .*\r\n$gdb_prompt $" {
133                 pass "set conditional fast tracepoint, done"
134                 set run_ftrace 1
135             }
136             -re "May not have a fast tracepoint at .*\r\n$gdb_prompt $" {
137                 pass "set conditional fast tracepoint, not allowed at line"
138             }
139         }
141     # If the fast tracepoint couldn't be set, don't bother with the run.
142     if {$run_ftrace == 1} {
144         # Begin the test.
145         run_trace_experiment
146     }
149 proc gdb_trace_collection_test {} {
151     prepare_for_trace_test
153     gdb_slow_trace_speed_test
155     gdb_fast_trace_speed_test
158 clean_restart $executable
159 gdb_load_shlib $ipalib
161 runto_main
163 if {![gdb_target_supports_trace]} {
164     unsupported "current target does not support trace"
165     return 1
168 # Body of test encased in a proc so we can return prematurely.
169 gdb_trace_collection_test