2016-01-01 04:33:14 +00:00
|
|
|
# Copyright 1999-2016 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
|
|
|
|
#
|
|
|
|
# Test MI's stepi and nexti equivalent commands.
|
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 basics.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-stepi.exp
|
|
|
|
return -1
|
2000-02-23 00:25:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
proc test_stepi_nexti {} {
|
|
|
|
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
|
|
|
|
2004-08-15 10:15:58 +00:00
|
|
|
set line_main_head [gdb_get_line_number "main ("]
|
|
|
|
set line_main_body [expr $line_main_head + 2]
|
|
|
|
set line_main_hello [gdb_get_line_number "Hello, World!"]
|
|
|
|
|
2008-04-05 17:12:46 +00:00
|
|
|
set line [mi_execute_to "exec-step-instruction" "end-stepping-range" "main" "" \
|
|
|
|
".*basics.c" "\[0-9\]+" "" "step-instruction at main"]
|
|
|
|
if { $line >= $line_main_body && $line <= $line_main_hello } {
|
|
|
|
pass "step-instruction at main (line check)"
|
|
|
|
} else {
|
|
|
|
fail "step-instruction at main (line check)"
|
|
|
|
}
|
|
|
|
|
|
|
|
set line [mi_execute_to "exec-next-instruction" "end-stepping-range" "main" "" \
|
|
|
|
".*basics.c" "\[0-9\]+" "" "next-instruction at main"]
|
|
|
|
if { $line >= $line_main_body && $line <= $line_main_hello } {
|
|
|
|
pass "next-instruction at main (line check)"
|
|
|
|
} else {
|
|
|
|
fail "next-instruction at main (line check)"
|
2000-02-23 00:25:43 +00:00
|
|
|
}
|
2008-04-05 17:12:46 +00:00
|
|
|
|
|
|
|
set line [mi_execute_to "exec-next-instruction" "end-stepping-range" "main" "" \
|
|
|
|
".*basics.c" "\[0-9\]+" "" "next-instruction at main 2"]
|
|
|
|
if { $line >= $line_main_body && $line <= $line_main_hello } {
|
|
|
|
pass "next-instruction at main 2 (line check)"
|
|
|
|
} else {
|
|
|
|
fail "next-instruction at main 2 (line check)"
|
2000-02-23 00:25:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-05 15:43:18 +00:00
|
|
|
mi_run_to_main
|
2000-02-23 00:25:43 +00:00
|
|
|
test_stepi_nexti
|
|
|
|
|
|
|
|
mi_gdb_exit
|
|
|
|
return 0
|