daily update
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.trace / disconnected-tracing.exp
CommitLineData
c772f8e7
HZ
1# Copyright 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# Test of disconnected-tracing.
17
18load_lib "trace-support.exp";
19
497a5eb0
TT
20standard_testfile
21set executabel $testfile
c772f8e7
HZ
22set expfile $testfile.exp
23set gdbserver_reconnect_p 1
24
25if { [info proc gdb_reconnect] == "" } {
26 unsupported "target does not support reconnect"
27 return -1
28}
29
30if [prepare_for_testing $expfile $executable $srcfile \
31 {debug nowarnings}] {
32 untested "failed to prepare for trace tests"
33 return -1
34}
35
36if ![runto_main] {
37 fail "can't run to main to check for trace support"
38 return -1
39}
40
41if ![gdb_target_supports_trace] {
42 unsupported "target does not support trace"
43 return -1;
44}
45
46delete_breakpoints
47gdb_test_no_output "set confirm off"
48gdb_test_no_output "set disconnected-tracing on"
49gdb_test "trace main" ".*"
50gdb_test_no_output "tstart"
51
52gdb_test "info tracepoints" ".*in main at.*" "first info tracepoints"
53
54gdb_test "disconnect" "Ending remote debugging\\." "first disconnect"
55if { [gdb_reconnect] == 0 } {
56 pass "first reconnect after unload"
57} else {
58 fail "first reconnect after unload"
59 return 0
60}
61gdb_test "info tracepoints" ".*in main at.*" "second info tracepoints"
62
63delete_breakpoints
64gdb_test "info tracepoints" ".*No tracepoints..*" "third info tracepoints"
65
66gdb_test "disconnect" "Ending remote debugging\\." "second disconnect"
67if { [gdb_reconnect] == 0 } {
68 pass "second reconnect after unload"
69} else {
70 fail "second reconnect after unload"
71 return 0
72}
73gdb_test "info tracepoints" ".*in main at.*" "fourth info tracepoints"
74
This page took 0.045626 seconds and 4 git commands to generate.