gdb/
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.trace / tfile.exp
CommitLineData
00bf0b85
SS
1# Copyright 2010 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 trace file support.
17
18# Note that unlike most of the tracing tests, this can be run on
19# targets lacking tracepoint support; the program tfile.c has the
20# ability to generate synthetic trace files directly, and the tfile
21# target is available to all GDB configs.
22
23load_lib "trace-support.exp";
24
25if [target_info exists gdb,nofileio] {
26 verbose "Skipping tfile.exp because of no fileio capabilities."
27 continue
28}
29
30if $tracelevel then {
31 strace $tracelevel
32}
33
34set prms_id 0
35set bug_id 0
36
37gdb_exit
38gdb_start
39set testfile "tfile"
40set srcfile ${testfile}.c
41set binfile $objdir/$subdir/$testfile
42if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
43 executable {debug nowarnings}] != "" } {
44 untested file.exp
45 return -1
46}
47gdb_reinitialize_dir $srcdir/$subdir
48
49# Make sure we are starting fresh.
6c28cbf2
SS
50remote_file host delete basic.tf
51remote_file host delete error.tf
00bf0b85
SS
52
53gdb_load $binfile
54
55runto_main
56
57gdb_test "break done_making_trace_files" "" ""
58
59gdb_test "continue" "" ""
60
61# tsave command would be tested here...
62
63gdb_test "continue" "" ""
64
65# Program has presumably exited, now target a trace file it created.
66
67gdb_test "target tfile basic.tf" "Created tracepoint.*" "target tfile"
68
69gdb_test "info trace" ".*tracepoint.*in write_basic_trace_file.*" \
70 "info tracepoints on trace file"
71
8c9a6790 72gdb_test "tfind 0" "Found trace frame 0.*" "tfind 0 on trace file"
00bf0b85
SS
73
74gdb_test "print testglob" " = 31415" "print testglob on trace file"
75
76gdb_test "tfind" "Target failed to find requested trace frame." \
77 "tfind does not find a second frame in trace file"
78
79gdb_test "tstatus" \
80 "Using a trace file.*
81Trace stopped by a tstop command.*
4daf5ac0
SS
82Collected 1 trace frame.*
83Trace buffer has 256 bytes of 4096 bytes free \\(93% full\\).*
00bf0b85
SS
84Looking at trace frame 0, tracepoint .*" \
85 "tstatus on trace file"
86
6c28cbf2 87# Now start afresh, using only a trace file.
00bf0b85 88
6c28cbf2
SS
89gdb_exit
90gdb_start
00bf0b85 91
6c28cbf2 92gdb_load $binfile
00bf0b85 93
6c28cbf2 94gdb_test "target tfile error.tf" "Created tracepoint.*" "target tfile"
00bf0b85 95
6c28cbf2
SS
96gdb_test "tstatus" \
97 "Using a trace file.*
98Trace stopped by an error \\(made-up error, tracepoint 1\\).*
99Collected 0 trace frame.*
100Trace buffer has 256 bytes of 4096 bytes free \\(93% full\\).*
101Not looking at any trace frame.*" \
102 "tstatus on error trace file"
This page took 0.055987 seconds and 4 git commands to generate.