2012-01-16 Pedro Alves <palves@redhat.com>
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.trace / infotrace.exp
1 # Copyright 1998, 2007-2012 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
21 gdb_exit
22 gdb_start
23
24 set testfile "actions"
25 set srcfile ${testfile}.c
26 set binfile $objdir/$subdir/infotrace
27 if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
28 executable {debug nowarnings}] != "" } {
29 untested infotrace.exp
30 return -1
31 }
32 gdb_reinitialize_dir $srcdir/$subdir
33
34 # If testing on a remote host, download the source file.
35 # remote_download host $srcdir/$subdir/$srcfile
36
37 gdb_file_cmd $binfile
38
39 #
40 # test "info tracepoints" command
41 #
42
43 gdb_delete_tracepoints
44 set c_test_num [gdb_gettpnum gdb_c_test];
45 set asm_test_num [gdb_gettpnum gdb_asm_test];
46 if { $c_test_num <= 0 || $asm_test_num <= 0 } then {
47 fail "setting tracepoints"
48 return;
49 }
50
51 # 2.1 info tracepoints (all)
52 gdb_test "info tracepoints" \
53 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
54 \[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+.
55 \[0-9\]+\[\t \]+tracepoint keep y.* in gdb_asm_test at .*$srcfile:\[0-9\]+." \
56 "2.1: info tracepoints (all)"
57
58 # 2.2 info tracepoint (specific)
59 gdb_test "info tracepoint $c_test_num" \
60 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
61 \[0-9\]+\[\t \]+tracepoint keep y.* in gdb_c_test at .*$srcfile:\[0-9\]+." \
62 "2.2a: info tracepoint $c_test_num (gdb_c_test)"
63
64 gdb_test "info tracepoint $asm_test_num" \
65 "Num Type\[ \]+Disp Enb Address\[ \]+What.*
66 \[0-9\]+\[\t \]+tracepoint keep y.* in gdb_asm_test at .*$srcfile:\[0-9\]+." \
67 "2.2b: info tracepoint $asm_test_num (gdb_asm_test)"
68
69 # 2.3 info tracepoint (invalid tracepoint number)
70 gdb_test "info tracepoint [expr $c_test_num + $asm_test_num]" \
71 "No tracepoint matching '[expr $c_test_num + $asm_test_num]'." \
72 "2.3: info tracepoint (invalid tracepoint number)"
73
74 # 2.4 info tracepoints (list of numbers)
75 gdb_test_multiple "info tracepoints $c_test_num $asm_test_num " \
76 "2.4: info trace rejects multiple tracepoint numbers" {
77 -re "Num Enb .*$gdb_prompt $" {
78 fail "2.4: info trace rejects multiple tracepoint numbers"
79 }
80 -re ".*$gdb_prompt $" {
81 pass "2.4: info trace rejects multiple tracepoint numbers"
82 }
83 }
84
85 # 2.5 help info trace
86 gdb_test "help info tracepoints" \
87 "Status of specified tracepoints .all tracepoints if no argument.*" \
88 "2.5: help info tracepoints"
89
This page took 0.03605 seconds and 5 git commands to generate.