2011-01-01 15:34:07 +00:00
|
|
|
# Copyright 1999, 2000, 2001, 2005, 2007, 2008, 2009, 2010, 2011
|
2009-01-03 05:58:08 +00:00
|
|
|
# Free Software Foundation, Inc.
|
2000-02-23 00:25:43 +00: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 18:14:19 +00:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2000-02-23 00:25:43 +00:00
|
|
|
# (at your option) any later version.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
2000-02-23 00:25:43 +00: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 18:14:19 +00:00
|
|
|
#
|
2000-02-23 00:25:43 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 18:14:19 +00:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2000-02-23 00:25:43 +00:00
|
|
|
|
|
|
|
# Test Machine interface (MI) operations
|
|
|
|
# Verify that, using the MI, we can run a simple program and perform
|
|
|
|
# exec-until.
|
|
|
|
|
|
|
|
# The goal is not to
|
|
|
|
# test gdb functionality, which is done by other tests, but to verify
|
|
|
|
# the correct output response to MI operations.
|
|
|
|
#
|
|
|
|
|
|
|
|
load_lib mi-support.exp
|
2001-06-18 17:57:43 +00:00
|
|
|
set MIFLAGS "-i=mi"
|
2000-02-23 00:25:43 +00:00
|
|
|
|
|
|
|
gdb_exit
|
|
|
|
if [mi_gdb_start] {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
set testfile "until"
|
|
|
|
set srcfile ${testfile}.c
|
|
|
|
set binfile ${objdir}/${subdir}/${testfile}
|
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
|
2006-08-10 05:27:22 +00:00
|
|
|
untested mi-until.exp
|
|
|
|
return -1
|
2000-02-23 00:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mi_delete_breakpoints
|
|
|
|
mi_gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
mi_gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
mi_gdb_load ${binfile}
|
|
|
|
|
|
|
|
proc test_running_to_foo {} {
|
|
|
|
global mi_gdb_prompt
|
|
|
|
global hex
|
|
|
|
|
2008-04-24 08:46:19 +00:00
|
|
|
mi_create_breakpoint "10" 1 "keep" foo ".*until.c" 10 ".*" \
|
2000-02-23 00:25:43 +00:00
|
|
|
"break-insert operation"
|
|
|
|
|
|
|
|
mi_run_cmd
|
2008-04-15 14:33:55 +00:00
|
|
|
mi_expect_stop "breakpoint-hit" "foo" "" ".*until.c" 10 \
|
|
|
|
{ "" "disp=\"keep\"" } "run to main"
|
2000-02-23 00:25:43 +00:00
|
|
|
|
|
|
|
mi_gdb_test "100-break-delete 1" "100\\^done" "break-delete 1"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
proc test_until {} {
|
|
|
|
global mi_gdb_prompt
|
2005-05-17 Daniel Jacobowitz <dan@codesourcery.com>
Dennis Brueni <dennis@slickedit.com>
gdb/
* stack.c (print_frame): In MI mode, output a fullname attribute
with the stack frame.
gdb/doc/
* gdb.texinfo (GDB/MI Breakpoint Table Commands)
(GDB/MI Data Manipulation, GDB/MI Program Control)
(GDB/MI Stack Manipulation): Update examples to include the fullname
attribute in stack frames.
gdb/testsuite/
* gdb.mi/mi-cli.exp, gdb.mi/mi-return.exp, gdb.mi/mi-stack.exp,
gdb.mi/mi-stepi.exp, gdb.mi/mi-syn-frame.exp, gdb.mi/mi-until.exp,
gdb.mi/mi-var-display.exp, gdb.mi/mi-watch.exp, gdb.mi/mi2-cli.exp,
gdb.mi/mi2-return.exp, gdb.mi/mi2-stack.exp,
gdb.mi/mi2-syn-frame.exp, gdb.mi/mi2-until.exp,
gdb.mi/mi2-var-display.exp: Expect fullname field in stack frames.
* lib/mi-support.exp (mi_runto, mi_execute_to_helper): Likewise.
2005-05-18 03:41:59 +00:00
|
|
|
global hex fullname_syntax srcfile
|
2000-02-23 00:25:43 +00:00
|
|
|
|
2008-04-05 17:12:46 +00:00
|
|
|
setup_kfail gdb/2104 "*-*-*"
|
|
|
|
mi_execute_to "exec-until" "end-stepping-range" "foo" "" ".*until.c" "12" "" \
|
|
|
|
"until after while loop"
|
2000-02-23 00:25:43 +00:00
|
|
|
|
2008-04-05 17:12:46 +00:00
|
|
|
mi_execute_to "exec-until 15" "location-reached" "foo" "" ".*until.c" "15" ""\
|
|
|
|
"until line number"
|
2000-02-23 00:25:43 +00:00
|
|
|
|
2008-04-05 17:12:46 +00:00
|
|
|
mi_execute_to "exec-until until.c:17" "location-reached" "foo" "" ".*until.c" "17" ""\
|
|
|
|
"until line number:file"
|
2000-02-23 00:25:43 +00:00
|
|
|
|
2008-04-05 17:12:46 +00:00
|
|
|
# This is supposed to NOT stop at line 25. It stops right after foo is over.
|
|
|
|
mi_execute_to "exec-until until.c:25" "location-reached" "main" "" ".*until.c" "(23|24)" ""\
|
|
|
|
"until after current function"
|
2000-02-23 00:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
test_running_to_foo
|
|
|
|
test_until
|
|
|
|
|
|
|
|
mi_gdb_exit
|
|
|
|
return 0
|