* lib/mi-support.exp (mi_expect_stop): New.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-cli.exp
CommitLineData
9b254dd1 1# Copyright 2002, 2003, 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
cbf1e085
AC
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
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
cbf1e085 6# (at your option) any later version.
e22f8b7c 7#
cbf1e085
AC
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.
e22f8b7c 12#
cbf1e085 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
cbf1e085 15
cbf1e085
AC
16# This file tests that GDB's console can be accessed via the MI.
17# Specifically, we are testing the "interpreter-exec" command and that
18# the commands that are executed via this command are properly executed.
19# Console commands executed via MI should use MI output wrappers, MI event
20# handlers, etc.
21
22load_lib mi-support.exp
23set MIFLAGS "-i=mi"
24
25gdb_exit
26if [mi_gdb_start] {
27 continue
28}
29
30set testfile "basics"
31set srcfile ${testfile}.c
32set binfile ${objdir}/${subdir}/${testfile}
33if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
b60f0898
JB
34 untested mi-cli.exp
35 return -1
cbf1e085
AC
36}
37
cbf1e085
AC
38mi_gdb_test "-interpreter-exec" \
39 {\^error,msg="mi_cmd_interpreter_exec: Usage: -interpreter-exec interp command"} \
40 "-interpreter-exec with no arguments"
41
42mi_gdb_test "-interpreter-exec console" \
43 {\^error,msg="mi_cmd_interpreter_exec: Usage: -interpreter-exec interp command"} \
44 "-interpreter-exec with one argument"
45
46mi_gdb_test "-interpreter-exec bogus command" \
47 {\^error,msg="mi_cmd_interpreter_exec: could not find interpreter \\\"bogus\\\""} \
48 "-interpreter-exec with bogus interpreter"
49
50set msg {Undefined command: \\\"bogus\\\"\. Try \\\"help\\\"\.}
51mi_gdb_test "-interpreter-exec console bogus" \
52 "&\\\"$msg\\\\n\\\".*\\^error,msg=\\\"$msg\\\".*" \
53 "-interpreter-exec console bogus"
54
55# NOTE: cagney/2003-02-03: Not yet.
56# mi_gdb_test "-interpreter-exec console \"file $binfile\"" \
57# {(=.*)+\^done} \
58# "-interpreter-exec console \"file \$binfile\""
59mi_gdb_test "-interpreter-exec console \"file $binfile\"" \
39fb8e9e 60 {~"Reading symbols from .*basics...".*done} \
cbf1e085
AC
61 "-interpreter-exec console \"file \$binfile\""
62
63mi_run_to_main
64
45f07fef
MC
65set line_main_head [gdb_get_line_number "main ("]
66set line_main_body [expr $line_main_head + 2]
67set line_main_hello [gdb_get_line_number "Hello, World!"]
68set line_main_return [expr $line_main_hello + 2]
69
cbf1e085
AC
70mi_gdb_test "-interpreter-exec console \"set args foobar\"" \
71 {\^done} \
72 "-interpreter-exec console \"set args foobar\""
73
74mi_gdb_test "-interpreter-exec console \"show args\"" \
75 {\~"Argument list to give program being debugged when it is started is \\\"foobar\\\"\.\\n".*\^done} \
76 "-interpreter-exec console \"show args\""
77
78# NOTE: cagney/2003-02-03: Not yet.
79# mi_gdb_test "-interpreter-exec console \"break callee4\"" \
80# {(&.*)*.*~"Breakpoint 2 at.*\\n".*=breakpoint-create,number="2".*\^done} \
81# "-interpreter-exec console \"break callee4\""
82mi_gdb_test "-interpreter-exec console \"break callee4\"" \
83 {(&.*)*.*~"Breakpoint 2 at.*\\n".*\^done} \
84 "-interpreter-exec console \"break callee4\""
85
86mi_gdb_test "-interpreter-exec console \"info break\"" \
87 {\~"Num[ \t]*Type[ \t]*Disp[ \t]*Enb[ \t]*Address[ \t]*What\\n".*~"2[ \t]*breakpoint[ \t]*keep[ \t]*y[ \t]*0x[0-9A-Fa-f]+[ \t]*in callee4 at .*basics.c:[0-9]+\\n".*\^done} \
88 "-interpreter-exec console \"info break\""
89
90mi_gdb_test "-interpreter-exec console \"set listsize 1\"" \
91 {\^done} \
92 "-interpreter-exec console \"set listsize 1\""
93
45f07fef 94# {.*\~"32[ \t(\\t)]*callee1.*\\n".*\^done }
cbf1e085 95mi_gdb_test "-interpreter-exec console \"list\"" \
45f07fef 96 ".*\~\"$line_main_body\[\\\\t \]*callee1.*;\\\\n\".*\\^done" \
cbf1e085
AC
97 "-interpreter-exec console \"list\""
98
bb378428
VP
99mi_execute_to "exec-continue" "breakpoint-hit" "callee4" "" ".*basics.c" "27" "" \
100 "continue to callee4"
cbf1e085
AC
101
102# NOTE: cagney/2003-02-03: Not yet.
103# mi_gdb_test "100-interpreter-exec console \"delete 2\"" \
104# {.*=breakpoint-delete,number=\"2\".*\^done} \
105# "-interpreter-exec console \"delete 2\""
106mi_gdb_test "100-interpreter-exec console \"delete 2\"" \
107 {100\^done} \
108 "-interpreter-exec console \"delete 2\""
109
110# NOTE: cagney/2003-02-03: Not yet.
111# mi_gdb_test "200-interpreter-exec console \"up\"" \
112# {.*=selected-frame-level-changed,level="1".*\^done} \
113# "-interpreter-exec console \"up\""
114mi_gdb_test "200-interpreter-exec console \"up\"" \
39fb8e9e 115 {~"#.*".*200\^done} \
cbf1e085
AC
116 "-interpreter-exec console \"up\""
117
118# NOTE: cagney/2003-02-03: Not yet.
119# mi_gdb_test "300-interpreter-exec console \"down\"" \
120# {.*=selected-frame-level-changed,level="0".*\^done} \
121# "-interpreter-exec console \"down\""
122mi_gdb_test "300-interpreter-exec console \"down\"" \
39fb8e9e 123 {~"#.*".*300\^done} \
cbf1e085
AC
124 "-interpreter-exec console \"down\""
125
126# NOTE: cagney/2003-02-03: Not yet.
127# mi_gdb_test "-interpreter-exec console \"frame 2\"" \
128# {.*=selected-frame-level-changed,level="2".*\^done} \
129# "-interpreter-exec console \"frame 2\""
130mi_gdb_test "400-interpreter-exec console \"frame 2\"" \
39fb8e9e 131 {~"#.*".*400\^done} \
cbf1e085
AC
132 "-interpreter-exec console \"frame 2\""
133
134# NOTE: cagney/2003-02-03: Not yet.
135# mi_gdb_test "-stack-select-frame 0" \
136# {.*=selected-frame-level-changed,level="0".*\^done} \
137# "-stack-select-frame 0"
138mi_gdb_test "500-stack-select-frame 0" \
139 {500\^done} \
140 "-stack-select-frame 0"
141
142# NOTE: cagney/2003-02-03: Not yet.
45f07fef 143# mi_gdb_test "-break-insert -t basics.c:$line_main_hello" \
cbf1e085 144# {.*=breakpoint-create,number="3".*\^done} \
45f07fef
MC
145# "-break-insert -t basics.c:\$line_main_hello"
146mi_gdb_test "600-break-insert -t basics.c:$line_main_hello" \
cbf1e085 147 {600\^done,bkpt=.number="3",type="breakpoint".*\}} \
45f07fef 148 "-break-insert -t basics.c:\$line_main_hello"
cbf1e085 149
bb378428
VP
150mi_execute_to "exec-continue" "" "main" "" ".*basics.c" $line_main_hello "" \
151 "-exec-continue to line $line_main_hello"
cbf1e085 152
bb378428
VP
153mi_execute_to "exec-next" "end-stepping-range" "main" "" ".*basics.c" $line_main_return "" \
154 "-exec-next to line $line_main_return"
cbf1e085
AC
155
156mi_gdb_test "-interpreter-exec console \"list\"" \
60c46647 157 "\~\"$line_main_return\[\\\\t ]*callme \\(1\\);\\\\n\".*\\^done" \
45f07fef 158 "-interpreter-exec console \"list\" at basics.c:\$line_main_return"
cbf1e085
AC
159
160mi_gdb_test "-interpreter-exec console \"help set args\"" \
161 {\~"Set argument list to give program being debugged when it is started\.\\nFollow this command with any number of args, to be passed to the program\.".*\^done} \
162 "-interpreter-exec console \"help set args\""
163
164# NOTE: cagney/2003-02-03: Not yet.
165# mi_gdb_test "-interpreter-exec console \"set \$pc=0x0\"" \
166# {.*=target-changed.*\^done} \
167# "-interpreter-exec console \"set \$pc=0x0\""
168mi_gdb_test "888-interpreter-exec console \"set \$pc=0x0\"" \
169 {888\^done} \
170 "-interpreter-exec console \"set \$pc=0x0\""
171
172#mi_gdb_test "-interpreter-exec console \"\"" \
173 {} \
174 "-interpreter-exec console \"\""
175
176mi_gdb_exit
177return 0
This page took 0.490444 seconds and 4 git commands to generate.