]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.mi/mi-until.exp
Fix for PR gdb/1543.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-until.exp
CommitLineData
9b254dd1 1# Copyright 1999, 2000, 2001, 2005, 2007, 2008 Free Software Foundation, Inc.
fb40c209
AC
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
e22f8b7c 5# the Free Software Foundation; either version 3 of the License, or
fb40c209 6# (at your option) any later version.
e22f8b7c 7#
fb40c209
AC
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
e22f8b7c 12#
fb40c209 13# You should have received a copy of the GNU General Public License
e22f8b7c 14# along with this program. If not, see <http://www.gnu.org/licenses/>.
fb40c209 15
fb40c209
AC
16# Test Machine interface (MI) operations
17# Verify that, using the MI, we can run a simple program and perform
18# exec-until.
19
20# The goal is not to
21# test gdb functionality, which is done by other tests, but to verify
22# the correct output response to MI operations.
23#
24
25load_lib mi-support.exp
b30bf9ee 26set MIFLAGS "-i=mi"
fb40c209
AC
27
28gdb_exit
29if [mi_gdb_start] {
30 continue
31}
32
33set testfile "until"
34set srcfile ${testfile}.c
35set binfile ${objdir}/${subdir}/${testfile}
36if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
b60f0898
JB
37 untested mi-until.exp
38 return -1
fb40c209
AC
39}
40
41mi_delete_breakpoints
42mi_gdb_reinitialize_dir $srcdir/$subdir
43mi_gdb_reinitialize_dir $srcdir/$subdir
44mi_gdb_load ${binfile}
45
46proc test_running_to_foo {} {
47 global mi_gdb_prompt
48 global hex
49
d24317b4 50 mi_create_breakpoint "10" 1 "keep" foo ".*until.c" 10 ".*" \
fb40c209
AC
51 "break-insert operation"
52
53 mi_run_cmd
18ac113b
AR
54 mi_expect_stop "breakpoint-hit" "foo" "" ".*until.c" 10 \
55 { "" "disp=\"keep\"" } "run to main"
fb40c209
AC
56
57 mi_gdb_test "100-break-delete 1" "100\\^done" "break-delete 1"
58
59}
60
61proc test_until {} {
62 global mi_gdb_prompt
76ff342d 63 global hex fullname_syntax srcfile
fb40c209 64
bb378428
VP
65 setup_kfail gdb/2104 "*-*-*"
66 mi_execute_to "exec-until" "end-stepping-range" "foo" "" ".*until.c" "12" "" \
67 "until after while loop"
fb40c209 68
bb378428
VP
69 mi_execute_to "exec-until 15" "location-reached" "foo" "" ".*until.c" "15" ""\
70 "until line number"
fb40c209 71
bb378428
VP
72 mi_execute_to "exec-until until.c:17" "location-reached" "foo" "" ".*until.c" "17" ""\
73 "until line number:file"
fb40c209 74
bb378428
VP
75 # This is supposed to NOT stop at line 25. It stops right after foo is over.
76 mi_execute_to "exec-until until.c:25" "location-reached" "main" "" ".*until.c" "(23|24)" ""\
77 "until after current function"
fb40c209
AC
78}
79
80test_running_to_foo
81test_until
82
83mi_gdb_exit
84return 0