1 # Copyright 2004-2019 Free Software Foundation, Inc.
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.
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.
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/>.
16 # interp.exp Test interpreter-exec command
20 if { [prepare_for_testing "failed to prepare" ${testfile} $srcfile {debug}] } {
24 # Do not use gdb_test for this test, since it has two prompts.
25 set cmd "interpreter-exec mi \"-var-update *\""
26 gdb_test_multiple $cmd $cmd {
27 -re "\\^done,changelist=\\\[\\\]\r\n$gdb_prompt " {
30 -re "\r\n$gdb_prompt $" { }
34 gdb_test "interpreter-exec console \"show version\"" "GNU gdb .*"
36 # Regression test for crash when an exception occurs in mi_parse.
37 gdb_test_multiple "interpreter-exec mi \"-break-insert --thread a\"" \
38 "regression test for mi_parse crash" {
39 -re ".error,msg=.Invalid value for the '--thread' option.\r\n$gdb_prompt " {
42 -re "\r\n$gdb_prompt $" { }
47 set cmd "interpreter-exec mi \"-stack-info-frame\""
48 gdb_test_multiple $cmd $cmd {
49 -re ".error,msg=.No registers\..\r\n$gdb_prompt " {
52 -re "\r\n$gdb_prompt $" { }
57 set cmd "interpreter-exec mi1 \"-break-insert main\""
58 gdb_test_multiple $cmd $cmd {
59 -re ".done.bkpt=.number=.\[0-9\]\[^\n\]+\r\n$gdb_prompt " {
62 -re "\r\n$gdb_prompt $" { }
67 set cmd "interpreter-exec mi2 \"-break-insert main\""
68 gdb_test_multiple $cmd $cmd {
69 -re ".done.bkpt=.number=.\[0-9\]\[^\n\]+\r\n$gdb_prompt " {
72 -re "\r\n$gdb_prompt $" { }
77 set cmd "interpreter-exec mi3 \"-break-insert main\""
78 gdb_test_multiple $cmd $cmd {
79 -re ".done.bkpt=.number=.\[0-9\]\[^\n\]+\r\n$gdb_prompt " {
82 -re "\r\n$gdb_prompt $" { }
87 if ![runto_main] then {
92 gdb_test "list" ".*\[0-9\].*main \\(int argc.*" "can list sources"