]>
Commit | Line | Data |
---|---|---|
4c38e0a4 | 1 | # Copyright 1998, 2007, 2008, 2009, 2010 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 ([email protected]) |
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 | ||
f8b7eaf3 DJ |
30 | set testfile "actions" |
31 | set srcfile ${testfile}.c | |
32 | set binfile $objdir/$subdir/infotrace | |
33 | if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \ | |
34 | executable {debug nowarnings}] != "" } { | |
35 | untested infotrace.exp | |
36 | return -1 | |
c906108c SS |
37 | } |
38 | gdb_reinitialize_dir $srcdir/$subdir | |
39 | ||
40 | # If testing on a remote host, download the source file. | |
41 | # remote_download host $srcdir/$subdir/$srcfile | |
42 | ||
43 | gdb_file_cmd $binfile | |
44 | ||
45 | # | |
46 | # test "info tracepoints" command | |
47 | # | |
48 | ||
49 | gdb_delete_tracepoints | |
50 | set c_test_num [gdb_gettpnum gdb_c_test]; | |
51 | set asm_test_num [gdb_gettpnum gdb_asm_test]; | |
52 | if { $c_test_num <= 0 || $asm_test_num <= 0 } then { | |
53 | fail "setting tracepoints" | |
54 | return; | |
55 | } | |
56 | ||
57 | # 2.1 info tracepoints (all) | |
58 | gdb_test "info tracepoints" \ | |
1042e4c0 SS |
59 | "Num Type\[ \]+Disp Enb Address\[ \]+What.* |
60 | \[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+. | |
61 | \[0-9\]+\[\t \]+tracepoint keep y.* in gdb_asm_test at .*$srcfile:\[0-9\]+." \ | |
c906108c SS |
62 | "2.1: info tracepoints (all)" |
63 | ||
64 | # 2.2 info tracepoint (specific) | |
65 | gdb_test "info tracepoint $c_test_num" \ | |
1042e4c0 SS |
66 | "Num Type\[ \]+Disp Enb Address\[ \]+What.* |
67 | \[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+." \ | |
c906108c SS |
68 | "2.2a: info tracepoint $c_test_num (gdb_c_test)" |
69 | ||
70 | gdb_test "info tracepoint $asm_test_num" \ | |
1042e4c0 SS |
71 | "Num Type\[ \]+Disp Enb Address\[ \]+What.* |
72 | \[0-9\]+\[\t \]+tracepoint keep y.* in gdb_asm_test at .*$srcfile:\[0-9\]+." \ | |
c906108c SS |
73 | "2.2b: info tracepoint $asm_test_num (gdb_asm_test)" |
74 | ||
75 | # 2.3 info tracepoint (invalid tracepoint number) | |
76 | gdb_test "info tracepoint [expr $c_test_num + $asm_test_num]" \ | |
1042e4c0 | 77 | "No breakpoint or watchpoint number [expr $c_test_num + $asm_test_num]." \ |
c906108c SS |
78 | "2.3: info tracepoint (invalid tracepoint number)" |
79 | ||
80 | # 2.4 info tracepoints (list of numbers) | |
81 | send_gdb "info tracepoints $c_test_num $asm_test_num \n" | |
82 | gdb_expect { | |
83 | -re "Num Enb .*$gdb_prompt $" { | |
84 | fail "2.4: info trace rejects multiple tracepoint numbers" | |
85 | } | |
86 | -re ".*$gdb_prompt $" { | |
87 | pass "2.4: info trace rejects multiple tracepoint numbers" | |
88 | } | |
89 | } | |
90 | ||
91 | # 2.5 help info trace | |
92 | gdb_test "help info tracepoints" \ | |
93 | "Status of tracepoints, or tracepoint number NUMBER.*" \ | |
94 | "2.5: help info tracepoints" | |
95 |