Testsuite: Fix ambiguous "break" due to libinproctrace
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.trace / infotrace.exp
CommitLineData
e2882c85 1# Copyright 1998-2018 Free Software Foundation, Inc.
c906108c
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
c906108c 6# (at your option) any later version.
e22f8b7c 7#
c906108c
SS
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.
e22f8b7c 12#
c906108c 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c 15
c906108c
SS
16# This file was written by Michael Snyder (msnyder@cygnus.com)
17
4ec70201 18load_lib "trace-support.exp"
c906108c 19
c906108c
SS
20
21gdb_exit
22gdb_start
23
497a5eb0 24standard_testfile actions.c
f8b7eaf3
DJ
25if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
26 executable {debug nowarnings}] != "" } {
84c93cd5 27 untested "failed to compile"
f8b7eaf3 28 return -1
c906108c
SS
29}
30gdb_reinitialize_dir $srcdir/$subdir
31
32# If testing on a remote host, download the source file.
33# remote_download host $srcdir/$subdir/$srcfile
34
35gdb_file_cmd $binfile
36
37#
38# test "info tracepoints" command
39#
40
41gdb_delete_tracepoints
4ec70201
PA
42set c_test_num [gdb_gettpnum gdb_c_test]
43set asm_test_num [gdb_gettpnum gdb_asm_test]
c906108c
SS
44if { $c_test_num <= 0 || $asm_test_num <= 0 } then {
45 fail "setting tracepoints"
4ec70201 46 return
c906108c
SS
47}
48
49# 2.1 info tracepoints (all)
50gdb_test "info tracepoints" \
1042e4c0
SS
51 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
52\[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+.
f2a8bc8a
YQ
53\[\t \]+not installed on target.
54\[0-9\]+\[\t \]+tracepoint keep y.* in gdb_asm_test at .*$srcfile:\[0-9\]+.
55\[\t \]+not installed on target." \
c906108c
SS
56 "2.1: info tracepoints (all)"
57
58# 2.2 info tracepoint (specific)
59gdb_test "info tracepoint $c_test_num" \
1042e4c0 60 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
f2a8bc8a
YQ
61\[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+.
62\[\t \]+not installed on target." \
c906108c
SS
63 "2.2a: info tracepoint $c_test_num (gdb_c_test)"
64
65gdb_test "info tracepoint $asm_test_num" \
1042e4c0 66 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
f2a8bc8a
YQ
67\[0-9\]+\[\t \]+tracepoint keep y.* in gdb_asm_test at .*$srcfile:\[0-9\]+.
68\[\t \]+not installed on target." \
c906108c
SS
69 "2.2b: info tracepoint $asm_test_num (gdb_asm_test)"
70
71# 2.3 info tracepoint (invalid tracepoint number)
72gdb_test "info tracepoint [expr $c_test_num + $asm_test_num]" \
e5a67952 73 "No tracepoint matching '[expr $c_test_num + $asm_test_num]'." \
c906108c
SS
74 "2.3: info tracepoint (invalid tracepoint number)"
75
76# 2.4 info tracepoints (list of numbers)
0ab48859
MS
77gdb_test_multiple "info tracepoints $c_test_num $asm_test_num " \
78 "2.4: info trace rejects multiple tracepoint numbers" {
79 -re "Num Enb .*$gdb_prompt $" {
80 fail "2.4: info trace rejects multiple tracepoint numbers"
81 }
82 -re ".*$gdb_prompt $" {
83 pass "2.4: info trace rejects multiple tracepoint numbers"
84 }
c906108c 85 }
c906108c
SS
86
87# 2.5 help info trace
88gdb_test "help info tracepoints" \
e5a67952 89 "Status of specified tracepoints .all tracepoints if no argument.*" \
c906108c
SS
90 "2.5: help info tracepoints"
91
5ae4861a
YQ
92# 2.6 info tracepoints (check trace buffer usage). We need a live
93# tracing.
4496bed7
PA
94
95# Load the binary to the target too.
96gdb_load $binfile
97
98# Can't use runto_main here, because that would delete the tracepoints
99# created above.
5ae4861a
YQ
100gdb_breakpoint "main"
101gdb_trace_setactions "collect on tracepoint 1" "1" \
102 "collect gdb_struct1_test" "^$"
103gdb_run_cmd
4496bed7 104if {[gdb_test "" "Breakpoint ${decimal}, main.*"] != 0} {
bc6c7af4 105 fail "can't run to main"
4496bed7
PA
106 return -1
107}
5ae4861a
YQ
108
109if { ![gdb_target_supports_trace] } then {
bc6c7af4 110 unsupported "current target does not support trace"
ae59b1da 111 return 1
5ae4861a
YQ
112}
113
194ed413 114gdb_breakpoint "end" qualified
5ae4861a
YQ
115gdb_test_no_output "tstart"
116gdb_test "continue" "Continuing\\.\[ \r\n\]+Breakpoint.*" \
117 "continue to end"
118gdb_test_no_output "tstop"
119gdb_test "tstatus"
120gdb_test "info tracepoints" \
121 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
122\[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+.
123\[\t \]+tracepoint already hit 1 time.
124\[\t \]+trace buffer usage ${decimal} bytes.
125\[\t \]+collect gdb_struct1_test.
126\tinstalled on target.
127\[0-9\]+\[\t \]+tracepoint keep y.* in gdb_asm_test at .*$srcfile:\[0-9\]+.
128\tinstalled on target." \
129 "2.6: info tracepoints (trace buffer usage)"
This page took 2.676995 seconds and 4 git commands to generate.