* gdb.mi/mi-async.exp, gdb.mi/mi-basics.exp,
[external/binutils.git] / gdb / testsuite / gdb.trace / while-dyn.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     load_lib "emc-support.exp"
32     set testfile "gdb_c_test"
33     set srcfile  $testfile.c
34     set binfile [board_info target d490_binfile];
35     gdb_test "set remotetimeout 6" "" ""
36     set timeout 500
37     gdb_target_monitor "$binfile"
38     # Give a TSTOP and ignore errors, to make sure any previous trace is off
39     gdb_test "tstop" "" ""
40     gdb_test "tfind none"  "" ""
41     send_gdb "compare-section CS\n"
42     gdb_expect {
43         -re "MIS-MATCHED.*$gdb_prompt $" {
44             untested while-dyn.exp
45             return -1
46             all tests in this module will fail.";
47         }
48         -re ".*$gdb_prompt $" { }
49     }
50 } else {
51     set testfile "actions"
52     set srcfile $testfile.c
53     set binfile $objdir/$subdir/while-dyn
54     if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
55             executable {debug nowarnings}] != "" } {
56         untested while-dyn.exp
57         return -1
58     }
59     gdb_load $binfile
60     gdb_test "tstop"       "" ""
61     gdb_test "tfind none"  "" ""
62     runto_main
63 }
64 gdb_reinitialize_dir $srcdir/$subdir
65
66 # We generously give ourselves one "pass" if we successfully 
67 # detect that this test cannot be run on this target!
68 if { ![gdb_target_supports_trace] } then {
69     pass "Current target does not support trace"
70     return 1;
71
72 }
73
74 # If testing on a remote host, download the source file.
75 # remote_download host $srcdir/$subdir/$srcfile
76
77 #
78 # test while-stepping dynamically (live target)
79 #
80
81 ## verify number of trace frames collected matches stepcount
82
83 gdb_delete_tracepoints
84 gdb_test "trace gdb_c_test" \
85         "Tracepoint $decimal at .*" \
86         "Set tracepoint at gdb_c_test"
87
88 gdb_trace_setactions "5.12: define while-stepping <stepcount>" \
89         "" \
90         "collect \$fp" "^$" \
91         "while-stepping 5" "^$" \
92         "collect p" "^$" \
93         "end" "^$" \
94         "end" ""
95
96 gdb_test "tstart" "" ""
97
98 if [istarget "m68k-*-elf"] then {
99     gdb_emclaptop_command "85,1,2,3,4,5,6"
100     sleep 5
101 } else {
102     gdb_test "break end" "" ""
103     gdb_test "continue" \
104             "Continuing.*Breakpoint $decimal, end.*" \
105             "run trace experiment"
106 }
107
108 gdb_test "tstop" "" ""
109
110 gdb_tfind_test "5.12: frame 5 should be the last one collected" "5" "5"
111
112 send_gdb "tfind 6\n"
113 gdb_expect {
114     -re "failed to find.*$gdb_prompt $" {
115         pass "5.12: trace stopped after 5 stepping frames"
116     }
117     -re ".*$gdb_prompt $" {
118         fail "5.12: trace stopped after 5 stepping frames"
119     }
120 }
121
122 gdb_test "tfind none" "" ""