6a7f7c8e0a8886f25c174c3f0a6c1764e65682b7
[platform/upstream/binutils.git] / gdb / testsuite / gdb.base / interp.exp
1 # Copyright 2004-2005, 2007-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 # interp.exp   Test interpreter-exec command
17
18 if $tracelevel then {
19     strace $tracelevel
20 }
21
22 set testfile "interp"
23
24 if { [prepare_for_testing ${testfile}.exp ${testfile} ${testfile}.c {debug}] } {
25     return -1
26 }
27
28 # Do not use gdb_test for this test, since it has two prompts.
29 set cmd "interpreter-exec mi \"-var-update *\""
30 gdb_test_multiple $cmd $cmd {
31     -re "\\^done,changelist=\\\[\\\]\r\n$gdb_prompt " {
32         pass "$cmd"
33         gdb_expect 1 {
34             -re "\r\n$gdb_prompt $" { }
35         }
36     }
37 }
38 gdb_test "interpreter-exec console \"show version\"" "GNU gdb .*"
39
40 # Regression test for crash when an exception occurs in mi_parse.
41 gdb_test_multiple "interpreter-exec mi \"-break-insert --thread a\"" \
42     "regression test for mi_parse crash" {
43         -re ".error,msg=.Invalid value for the '--thread' option.\r\n$gdb_prompt " {
44             pass "$cmd"
45             gdb_expect 1 {
46                 -re "\r\n$gdb_prompt $" { }
47             }
48         }
49     }
50
51 set cmd "interpreter-exec mi \"-stack-info-frame\""
52 gdb_test_multiple $cmd $cmd {
53     -re ".error,msg=.No registers\..\r\n$gdb_prompt " {
54         pass "$cmd"
55         gdb_expect 1 {
56             -re "\r\n$gdb_prompt $" { }
57         }
58     }
59 }
60
61 set cmd "interpreter-exec mi1 \"-break-insert main\""
62 gdb_test_multiple $cmd $cmd {
63     -re ".done.bkpt=.number=.\[0-9\]\[^\n\]+\r\n$gdb_prompt " {
64         pass "$cmd"
65         gdb_expect 1 {
66             -re "\r\n$gdb_prompt $" { }
67         }
68     }
69 }
70
71 set cmd "interpreter-exec mi2 \"-break-insert main\""
72 gdb_test_multiple $cmd $cmd {
73     -re ".done.bkpt=.number=.\[0-9\]\[^\n\]+\r\n$gdb_prompt " {
74         pass "$cmd"
75         gdb_expect 1 {
76             -re "\r\n$gdb_prompt $" { }
77         }
78     }
79 }
80
81 set cmd "interpreter-exec mi3 \"-break-insert main\""
82 gdb_test_multiple $cmd $cmd {
83     -re ".done.bkpt=.number=.\[0-9\]\[^\n\]+\r\n$gdb_prompt " {
84         pass "$cmd"
85         gdb_expect 1 {
86             -re "\r\n$gdb_prompt $" { }
87         }
88     }
89 }
90
91 if ![runto_main] then {
92   fail "run to main"
93   return -1;
94 }
95
96 gdb_test "list" ".*\[0-9\].*main \\(int argc.*" "can list sources"
97 gdb_exit