]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.mi/mi-breakpoint-location-ena-dis.exp
Update copyright year range in all GDB files.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-breakpoint-location-ena-dis.exp
CommitLineData
42a4f53d 1# Copyright 2018-2019 Free Software Foundation, Inc.
d7154a8d
JV
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
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
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.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16# Tests whether =breakpoint=modified notification is sent when a single
17# breakpoint location is enabled or disabled via CLI.
18
19load_lib mi-support.exp
20set MIFLAGS "-i=mi"
21
22gdb_exit
23if {[mi_gdb_start]} {
24 continue
25}
26
27#
28# Start here
29#
30standard_testfile .cc
31
32if {[gdb_compile "$srcdir/$subdir/$srcfile" $binfile executable {debug c++}] != "" } {
33 return -1
34}
35
36mi_run_to_main
37
38mi_gdb_test "break add" \
39 {(&.*)*.*~"Breakpoint 2 at.*\\n".*=breakpoint-created,bkpt=\{number="2",type="breakpoint".*\},\{number="2.1",enabled="y".*\}.*\n\^done} \
40 "break add"
41
42# Modify enableness through MI commands shouldn't trigger MI
43# notification.
44mi_gdb_test "-break-disable 2.2" "\\^done" "-break-disable 2.2"
45mi_gdb_test "-break-enable 2.2" "\\^done" "-break-enable 2.2"
46
47# Modify enableness through CLI commands should trigger MI
48# notification.
49mi_gdb_test "dis 2.2" \
50 {.*=breakpoint-modified,bkpt=\{number="2",type="breakpoint".*\},\{number="2.1",enabled="y".*\},\{number="2.2",enabled="n".*\}.*\n\^done} \
51 "dis 2.2"
52mi_gdb_test "en 2.2" \
53 {.*=breakpoint-modified,bkpt=\{number="2",type="breakpoint".*\},\{number="2.1",enabled="y".*\},\{number="2.2",enabled="y".*\}.*\n\^done} \
54 "en 2.2"
55
56mi_gdb_exit