]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.mi/mi-until.exp
Update years in copyright notice for the GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-until.exp
CommitLineData
8acc9f48 1# Copyright 1999-2013 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
298a9cf0
TT
33standard_testfile until.c
34
9357e021 35if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
b60f0898
JB
36 untested mi-until.exp
37 return -1
fb40c209
AC
38}
39
40mi_delete_breakpoints
41mi_gdb_reinitialize_dir $srcdir/$subdir
42mi_gdb_reinitialize_dir $srcdir/$subdir
43mi_gdb_load ${binfile}
44
45proc test_running_to_foo {} {
46 global mi_gdb_prompt
47 global hex
48
d24317b4 49 mi_create_breakpoint "10" 1 "keep" foo ".*until.c" 10 ".*" \
fb40c209
AC
50 "break-insert operation"
51
52 mi_run_cmd
18ac113b
AR
53 mi_expect_stop "breakpoint-hit" "foo" "" ".*until.c" 10 \
54 { "" "disp=\"keep\"" } "run to main"
fb40c209
AC
55
56 mi_gdb_test "100-break-delete 1" "100\\^done" "break-delete 1"
57
58}
59
60proc test_until {} {
61 global mi_gdb_prompt
76ff342d 62 global hex fullname_syntax srcfile
fb40c209 63
bb378428
VP
64 setup_kfail gdb/2104 "*-*-*"
65 mi_execute_to "exec-until" "end-stepping-range" "foo" "" ".*until.c" "12" "" \
66 "until after while loop"
fb40c209 67
bb378428
VP
68 mi_execute_to "exec-until 15" "location-reached" "foo" "" ".*until.c" "15" ""\
69 "until line number"
fb40c209 70
bb378428
VP
71 mi_execute_to "exec-until until.c:17" "location-reached" "foo" "" ".*until.c" "17" ""\
72 "until line number:file"
fb40c209 73
bb378428
VP
74 # This is supposed to NOT stop at line 25. It stops right after foo is over.
75 mi_execute_to "exec-until until.c:25" "location-reached" "main" "" ".*until.c" "(23|24)" ""\
76 "until after current function"
fb40c209
AC
77}
78
79test_running_to_foo
80test_until
81
82mi_gdb_exit
83return 0