2011-01-01 16:34:07 +01:00
|
|
|
# Copyright 2004, 2005, 2007, 2008, 2009, 2010, 2011
|
|
|
|
# Free Software Foundation, Inc.
|
2005-02-02 22:12:03 +01:00
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-08-23 20:14:19 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2005-02-02 22:12:03 +01:00
|
|
|
# (at your option) any later version.
|
2007-08-23 20:14:19 +02:00
|
|
|
#
|
2005-02-02 22:12:03 +01:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2007-08-23 20:14:19 +02:00
|
|
|
#
|
2005-02-02 22:12:03 +01:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 20:14:19 +02:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-02-02 22:12:03 +01:00
|
|
|
|
|
|
|
# interp.exp Test interpreter-exec command
|
|
|
|
|
|
|
|
if $tracelevel then {
|
|
|
|
strace $tracelevel
|
|
|
|
}
|
|
|
|
|
2011-09-12 23:25:22 +02:00
|
|
|
set testfile "interp"
|
|
|
|
|
|
|
|
if { [prepare_for_testing ${testfile}.exp ${testfile} ${testfile}.c {debug}] } {
|
|
|
|
return -1
|
|
|
|
}
|
2005-02-02 22:12:03 +01:00
|
|
|
|
2008-08-20 20:55:57 +02:00
|
|
|
# Do not use gdb_test for this test, since it has two prompts.
|
|
|
|
set cmd "interpreter-exec mi \"-var-update *\""
|
|
|
|
gdb_test_multiple $cmd $cmd {
|
|
|
|
-re "\\^done,changelist=\\\[\\\]\r\n$gdb_prompt " {
|
|
|
|
pass "$cmd"
|
|
|
|
gdb_expect 1 {
|
|
|
|
-re "\r\n$gdb_prompt $" { }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-02-07 03:39:45 +01:00
|
|
|
gdb_test "interpreter-exec console \"show version\"" "GNU gdb .*"
|
2005-02-02 22:12:03 +01:00
|
|
|
|
2010-12-09 20:23:49 +01:00
|
|
|
# Regression test for crash when an exception occurs in mi_parse.
|
|
|
|
gdb_test_multiple "interpreter-exec mi \"-break-insert --thread a\"" \
|
|
|
|
"regression test for mi_parse crash" {
|
|
|
|
-re ".error,msg=.Invalid value for the '--thread' option.\r\n$gdb_prompt " {
|
|
|
|
pass "$cmd"
|
|
|
|
gdb_expect 1 {
|
|
|
|
-re "\r\n$gdb_prompt $" { }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-12 23:25:22 +02:00
|
|
|
set cmd "interpreter-exec mi \"-stack-info-frame\""
|
|
|
|
gdb_test_multiple $cmd $cmd {
|
|
|
|
-re ".error,msg=.No registers\..\r\n$gdb_prompt " {
|
|
|
|
pass "$cmd"
|
|
|
|
gdb_expect 1 {
|
|
|
|
-re "\r\n$gdb_prompt $" { }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
set cmd "interpreter-exec mi1 \"-break-insert main\""
|
|
|
|
gdb_test_multiple $cmd $cmd {
|
|
|
|
-re ".done.bkpt=.number=.\[0-9\]\[^\n\]+\r\n$gdb_prompt " {
|
|
|
|
pass "$cmd"
|
|
|
|
gdb_expect 1 {
|
|
|
|
-re "\r\n$gdb_prompt $" { }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
set cmd "interpreter-exec mi2 \"-break-insert main\""
|
|
|
|
gdb_test_multiple $cmd $cmd {
|
|
|
|
-re ".done.bkpt=.number=.\[0-9\]\[^\n\]+\r\n$gdb_prompt " {
|
|
|
|
pass "$cmd"
|
|
|
|
gdb_expect 1 {
|
|
|
|
-re "\r\n$gdb_prompt $" { }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
set cmd "interpreter-exec mi3 \"-break-insert main\""
|
|
|
|
gdb_test_multiple $cmd $cmd {
|
|
|
|
-re ".done.bkpt=.number=.\[0-9\]\[^\n\]+\r\n$gdb_prompt " {
|
|
|
|
pass "$cmd"
|
|
|
|
gdb_expect 1 {
|
|
|
|
-re "\r\n$gdb_prompt $" { }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ![runto_main] then {
|
|
|
|
fail "run to main"
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdb_test "list" ".*\[0-9\].*main \\(int argc.*" "can list sources"
|
2005-02-02 22:12:03 +01:00
|
|
|
gdb_exit
|