* gdb.mi/mi-async.exp, gdb.mi/mi-basics.exp,
[external/binutils.git] / gdb / testsuite / gdb.trace / infotrace.exp
1 #   Copyright 1998, 2007, 2008, 2009 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 if $tracelevel then {
21     strace $tracelevel
22 }
23
24 set prms_id 0
25 set bug_id 0
26
27 gdb_exit
28 gdb_start
29
30 if [istarget "m68k-*-elf"] then {
31     set srcfile gdb_c_test.c
32     set binfile [board_info target d490_binfile];
33 } else {
34     set testfile "actions"
35     set srcfile ${testfile}.c
36     set binfile $objdir/$subdir/infotrace
37     if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
38             executable {debug nowarnings}] != "" } {
39         untested infotrace.exp
40         return -1
41     }
42 }
43 gdb_reinitialize_dir $srcdir/$subdir
44
45 # If testing on a remote host, download the source file.
46 # remote_download host $srcdir/$subdir/$srcfile
47
48 gdb_file_cmd $binfile
49
50 #
51 # test "info tracepoints" command
52 #
53
54 gdb_delete_tracepoints
55 set c_test_num [gdb_gettpnum gdb_c_test];
56 set asm_test_num [gdb_gettpnum gdb_asm_test];
57 if { $c_test_num <= 0 || $asm_test_num <= 0 } then {
58     fail "setting tracepoints"
59     return;
60 }
61
62 # 2.1 info tracepoints (all)
63 gdb_test "info tracepoints" \
64     "Num     Type\[ \]+Disp Enb Address\[ \]+What.*
65 \[0-9\]+\[\t \]+tracepoint     keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+.
66 \[0-9\]+\[\t \]+tracepoint     keep y.* in gdb_asm_test at .*$srcfile:\[0-9\]+." \
67     "2.1: info tracepoints (all)"
68
69 # 2.2 info tracepoint (specific)
70 gdb_test "info tracepoint $c_test_num" \
71     "Num     Type\[ \]+Disp Enb Address\[ \]+What.*
72 \[0-9\]+\[\t \]+tracepoint     keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+." \
73     "2.2a: info tracepoint $c_test_num (gdb_c_test)"
74
75 gdb_test "info tracepoint $asm_test_num" \
76     "Num     Type\[ \]+Disp Enb Address\[ \]+What.*
77 \[0-9\]+\[\t \]+tracepoint     keep y.* in gdb_asm_test at .*$srcfile:\[0-9\]+." \
78     "2.2b: info tracepoint $asm_test_num (gdb_asm_test)"
79
80 # 2.3 info tracepoint (invalid tracepoint number)
81 gdb_test "info tracepoint [expr $c_test_num + $asm_test_num]" \
82     "No breakpoint or watchpoint 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)
86 send_gdb "info tracepoints $c_test_num $asm_test_num \n"
87 gdb_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
97 gdb_test "help info tracepoints" \
98     "Status of tracepoints, or tracepoint number NUMBER.*" \
99     "2.5: help info tracepoints"
100