Update copyright year range in all GDB files.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-breakpoint-location-ena-dis.exp
1 # Copyright 2018-2019 Free Software Foundation, Inc.
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
19 load_lib mi-support.exp
20 set MIFLAGS "-i=mi"
21
22 gdb_exit
23 if {[mi_gdb_start]} {
24 continue
25 }
26
27 #
28 # Start here
29 #
30 standard_testfile .cc
31
32 if {[gdb_compile "$srcdir/$subdir/$srcfile" $binfile executable {debug c++}] != "" } {
33 return -1
34 }
35
36 mi_run_to_main
37
38 mi_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.
44 mi_gdb_test "-break-disable 2.2" "\\^done" "-break-disable 2.2"
45 mi_gdb_test "-break-enable 2.2" "\\^done" "-break-enable 2.2"
46
47 # Modify enableness through CLI commands should trigger MI
48 # notification.
49 mi_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"
52 mi_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
56 mi_gdb_exit
This page took 0.030488 seconds and 4 git commands to generate.