* gdb.mi/dw2-ref-missing-frame.exp: Use standard_testfile,
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-stepi.exp
CommitLineData
0b302171
JB
1# Copyright 1999-2002, 2004-2005, 2007-2012 Free Software Foundation,
2# Inc.
fb40c209
AC
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
e22f8b7c 6# the Free Software Foundation; either version 3 of the License, or
fb40c209 7# (at your option) any later version.
e22f8b7c 8#
fb40c209
AC
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
e22f8b7c 13#
fb40c209 14# You should have received a copy of the GNU General Public License
e22f8b7c 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
fb40c209 16
fb40c209
AC
17# Test Machine interface (MI) operations
18# Verify that, using the MI, we can run a simple program and perform
19# exec-step-instruction and exec-next-instruction.
20
21# The goal is not to
22# test gdb functionality, which is done by other tests, but to verify
23# the correct output response to MI operations.
24#
25
26load_lib mi-support.exp
b30bf9ee 27set MIFLAGS "-i=mi"
fb40c209
AC
28
29gdb_exit
30if [mi_gdb_start] {
31 continue
32}
33
298a9cf0
TT
34standard_testfile basics.c
35
9357e021 36if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
b60f0898
JB
37 untested mi-stepi.exp
38 return -1
fb40c209
AC
39}
40
fb40c209
AC
41proc test_stepi_nexti {} {
42 global mi_gdb_prompt
76ff342d 43 global hex fullname_syntax srcfile
fb40c209 44
45f07fef
MC
45 set line_main_head [gdb_get_line_number "main ("]
46 set line_main_body [expr $line_main_head + 2]
47 set line_main_hello [gdb_get_line_number "Hello, World!"]
48
bb378428
VP
49 set line [mi_execute_to "exec-step-instruction" "end-stepping-range" "main" "" \
50 ".*basics.c" "\[0-9\]+" "" "step-instruction at main"]
51 if { $line >= $line_main_body && $line <= $line_main_hello } {
52 pass "step-instruction at main (line check)"
53 } else {
54 fail "step-instruction at main (line check)"
55 }
56
57 set line [mi_execute_to "exec-next-instruction" "end-stepping-range" "main" "" \
58 ".*basics.c" "\[0-9\]+" "" "next-instruction at main"]
59 if { $line >= $line_main_body && $line <= $line_main_hello } {
60 pass "next-instruction at main (line check)"
61 } else {
62 fail "next-instruction at main (line check)"
fb40c209 63 }
bb378428
VP
64
65 set line [mi_execute_to "exec-next-instruction" "end-stepping-range" "main" "" \
66 ".*basics.c" "\[0-9\]+" "" "next-instruction at main 2"]
67 if { $line >= $line_main_body && $line <= $line_main_hello } {
68 pass "next-instruction at main 2 (line check)"
69 } else {
70 fail "next-instruction at main 2 (line check)"
fb40c209
AC
71 }
72}
73
6afa27b0 74mi_run_to_main
fb40c209
AC
75test_stepi_nexti
76
77mi_gdb_exit
78return 0
This page took 1.246018 seconds and 4 git commands to generate.