2013-01-01 06:41:43 +00:00
|
|
|
# Copyright 1999-2013 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
|
|
|
|
2013-02-12 16:36:07 +00:00
|
|
|
# Test Machine interface (MI) operations
|
|
|
|
#
|
2000-02-23 00:25:43 +00:00
|
|
|
# Verify that, using the MI, we can run a simple program and perform
|
2013-02-12 16:36:07 +00:00
|
|
|
# exec-until.
|
2000-02-23 00:25:43 +00:00
|
|
|
#
|
2013-02-12 16:36:07 +00:00
|
|
|
# The goal is not to test gdb functionality, which is done by other
|
|
|
|
# tests, but to verify the correct output response to MI operations.
|
2000-02-23 00:25:43 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2012-07-10 15:32:52 +00:00
|
|
|
standard_testfile until.c
|
|
|
|
|
gdb/testsuite:
* gdb.mi/gdb2549.exp: Remove -DFAKEARGV from compilation flags.
* gdb.mi/mi-async.exp, gdb.mi/mi-basics.exp: Likewise.
* gdb.mi/mi-break.exp, gdb.mi/mi-cli.exp: Likewise.
* gdb.mi/mi-console.exp, gdb.mi/mi-disassemble.exp: Likewise.
* gdb.mi/mi-eval.exp, gdb.mi/mi-file.exp: Likewise.
* gdb.mi/mi-read-memory.exp, gdb.mi/mi-regs.exp: Likewise.
* gdb.mi/mi-return.exp, gdb.mi/mi-reverse.exp: Likewise.
* gdb.mi/mi-simplerun.exp, gdb.mi/mi-stack.exp: Likewise.
* gdb.mi/mi-stepi.exp, gdb.mi/mi-syn-frame.exp: Likewise.
* gdb.mi/mi-until.exp, gdb.mi/mi-var-block.exp: Likewise.
* gdb.mi/mi-var-child.exp, gdb.mi/mi-var-cmd.exp: Likewise.
* gdb.mi/mi-var-display.exp: Likewise.
* gdb.mi/mi-var-invalidate.exp: Likewise.
* gdb.mi/mi-watch.exp, gdb.mi/mi2-basics.exp: Likewise.
* gdb.mi/mi2-break.exp, gdb.mi/mi2-cli.exp: Likewise.
* gdb.mi/mi2-console.exp: Likewise.
* gdb.mi/mi2-disassemble.exp: Likewise.
* gdb.mi/mi2-eval.exp, gdb.mi/mi2-file.exp: Likewise.
* gdb.mi/mi2-read-memory.exp: Likewise.
* gdb.mi/mi2-regs.exp, gdb.mi/mi2-return.exp: Likewise.
* gdb.mi/mi2-simplerun.exp: Likewise.
* gdb.mi/mi2-stack.exp, gdb.mi/mi2-stepi.exp: Likewise.
* gdb.mi/mi2-syn-frame.exp: Likewise.
* gdb.mi/mi2-until.exp, gdb.mi/mi2-var-block.exp: Likewise.
* gdb.mi/mi2-var-child.exp, gdb.mi/mi2-var-cmd.exp: Likewise.
* gdb.mi/mi2-var-display.exp, gdb.mi/mi2-watch.exp: Likewise.
2012-07-09 18:28:17 +00:00
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
|
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
|