]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.trace/infotrace.exp
* gdb.arch/altivec-abi.exp: Replace gdb_suppress_entire_file with
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.trace / infotrace.exp
CommitLineData
b6ba6518 1# Copyright 1998 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
5# the Free Software Foundation; either version 2 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, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17# Please email any bugs, comments, and/or additions to this file to:
18# bug-gdb@prep.ai.mit.edu
19
20# This file was written by Michael Snyder (msnyder@cygnus.com)
21
22load_lib "trace-support.exp";
23
24if $tracelevel then {
25 strace $tracelevel
26}
27
28set prms_id 0
29set bug_id 0
30
31gdb_exit
32gdb_start
33
34if [istarget "m68k-*-elf"] then {
35 set srcfile gdb_c_test.c
36 set binfile [board_info target d490_binfile];
37} else {
38 set testfile "actions"
39 set srcfile ${testfile}.c
40 set binfile $objdir/$subdir/$testfile
41 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
fc91c6c2 42 executable {debug nowarnings}] != "" } {
b60f0898
JB
43 untested infotrace.exp
44 return -1
c906108c
SS
45 }
46}
47gdb_reinitialize_dir $srcdir/$subdir
48
49# If testing on a remote host, download the source file.
50# remote_download host $srcdir/$subdir/$srcfile
51
52gdb_file_cmd $binfile
53
54#
55# test "info tracepoints" command
56#
57
58gdb_delete_tracepoints
59set c_test_num [gdb_gettpnum gdb_c_test];
60set asm_test_num [gdb_gettpnum gdb_asm_test];
61if { $c_test_num <= 0 || $asm_test_num <= 0 } then {
62 fail "setting tracepoints"
63 return;
64}
65
66# 2.1 info tracepoints (all)
67gdb_test "info tracepoints" \
75ac9d7b 68 "Num Enb Address\[ \]+PassC StepC What.*$c_test_num\[\t \]+y\[\t \]+0x\[0-9a-fA-F\]+.*in gdb_c_test.*$asm_test_num\[\t \]+y\[\t \]+0x\[0-9a-fA-F\]+.*gdb_asm_test.*" \
c906108c
SS
69 "2.1: info tracepoints (all)"
70
71# 2.2 info tracepoint (specific)
72gdb_test "info tracepoint $c_test_num" \
73 "$c_test_num\[\t \]+y\[\t \]+0x\[0-9a-fA-F\]+.*in gdb_c_test.*" \
74 "2.2a: info tracepoint $c_test_num (gdb_c_test)"
75
76gdb_test "info tracepoint $asm_test_num" \
77 "$asm_test_num\[\t \]+y\[\t \]+0x\[0-9a-fA-F\]+.*gdb_asm_test.*" \
78 "2.2b: info tracepoint $asm_test_num (gdb_asm_test)"
79
80# 2.3 info tracepoint (invalid tracepoint number)
81gdb_test "info tracepoint [expr $c_test_num + $asm_test_num]" \
82 "No tracepoint number [expr $c_test_num + $asm_test_num]." \
83 "2.3: info tracepoint (invalid tracepoint number)"
84
85# 2.4 info tracepoints (list of numbers)
86send_gdb "info tracepoints $c_test_num $asm_test_num \n"
87gdb_expect {
88 -re "Num Enb .*$gdb_prompt $" {
89 fail "2.4: info trace rejects multiple tracepoint numbers"
90 }
91 -re ".*$gdb_prompt $" {
92 pass "2.4: info trace rejects multiple tracepoint numbers"
93 }
94}
95
96# 2.5 help info trace
97gdb_test "help info tracepoints" \
98 "Status of tracepoints, or tracepoint number NUMBER.*" \
99 "2.5: help info tracepoints"
100