Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Side by Side Diff: gdb/testsuite/gdb.btrace/enable.exp

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gdb/testsuite/gdb.btrace/enable.c ('k') | gdb/testsuite/gdb.btrace/function_call_history.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # This testcase is part of GDB, the GNU debugger.
2 #
3 # Copyright 2013 Free Software Foundation, Inc.
4 #
5 # Contributed by Intel Corp. <christian.himpel@intel.com>
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20 # check for btrace support
21 if { [skip_btrace_tests] } { return -1 }
22
23 # start fresh - without an executable
24 gdb_exit
25 gdb_start
26
27 # record cannot be stopped, if it was never active
28 gdb_test "record stop" "No record target is currently active\\..*" "record stop without target"
29
30 # btrace cannot be enabled without a running inferior
31 gdb_test "record btrace" "The program is not being run\\." "record btrace withou t running program"
32
33 # no function and no instruction history without btrace enabled
34 gdb_test "record function-call-history" "No record target is currently active\\. .*" "record function-call-history without target"
35 gdb_test "record instruction-history" "No record target is currently active\\..* " "record instruction-history without target"
36 gdb_test "info record" "No record target is currently active\\." "info record wi thout target"
37
38 # start inferior
39 standard_testfile
40 if [prepare_for_testing $testfile.exp $testfile {} {debug}] {
41 return -1
42 }
43 if ![runto_main] {
44 return -1
45 }
46
47 # enable btrace
48 gdb_test_no_output "record btrace" "record btrace"
49 gdb_test "record function-call-history" "No trace\\." "record function-call-hist ory without trace"
50 gdb_test "record instruction-history" "No trace\\." "record instruction-history without trace"
51
52 # btrace cannot be enabled twice
53 gdb_test "record btrace" "The process is already being recorded\\." "record btra ce the second time"
54
55 # full record cannot be activated as long as btrace is active
56 gdb_test "record full" "Process record target already running\\. Use \"record s top\" to stop record target first\\." "record full cannot be enabled"
57
58 # no trace recorded yet
59 gdb_test "info record" "Active record target: record-btrace\r\nRecorded 0 instru ctions in 0 functions for thread 1.*\\." "info record without trace"
60
61 # stop btrace record
62 gdb_test "record stop" "Process record is stopped and all execution logs are del eted\\." "record stop"
63 gdb_test "record stop" "No record target is currently active\\..*" "record stop the second time"
64
65 # enable btrace again
66 gdb_test_no_output "record btrace" "record btrace re-enable"
67 gdb_test "record btrace" "The process is already being recorded\\." "record btra ce re-enable twice"
68
69 # continue to the end and make sure we don't die
70 gdb_test "continue" ".*Inferior.*exited.*" "continue to end"
71
72 # skip the rerun test when using gdbserver
73 # otherwise rerun twice, target should be automatically disabled
74 load_lib gdbserver-support.exp
75 if [skip_gdbserver_tests] {
76 return 0
77 }
78 clean_restart $testfile
79 if ![runto_main] {
80 return -1
81 }
82 if ![runto_main] {
83 return -1
84 }
85
86 # make sure record-btrace can be enabled after re-run
87 clean_restart $testfile
88 if ![runto_main] {
89 return -1
90 }
91 gdb_test_no_output "record btrace"
92 if ![runto_main] {
93 return -1
94 }
95 gdb_test_no_output "record btrace" "enable after re-run"
OLDNEW
« no previous file with comments | « gdb/testsuite/gdb.btrace/enable.c ('k') | gdb/testsuite/gdb.btrace/function_call_history.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698