summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.mi
diff options
context:
space:
mode:
authorJan Vrany <jan.vrany@fit.cvut.cz>2018-05-31 09:56:33 +0100
committerSimon Marchi <simon.marchi@ericsson.com>2018-07-25 13:47:16 -0400
commitd7154a8d08b142d1258dc2e4189ff0d00cd26493 (patch)
tree3f73271165988b209d5045d12583d9dd8711f81d /gdb/testsuite/gdb.mi
parenta45389f60d4372bdb3484e432935f3169037d88c (diff)
downloadbinutils-gdb-d7154a8d08b142d1258dc2e4189ff0d00cd26493.tar.gz
Notify about breakpoint modification when enabling/disabling single location
When a single breakpoint location enableness was modified by a CLI command, observers were not notified about it. This issue is now fixed. gdb/ChangeLog: * breakpoint.c (enable_disable_bp_num_loc): Notify observers. gdb/testsuite/ChangeLog: * gdb.mi/mi-breakpoint-location-ena-dis.cc: New file. * gdb.mi/mi-breakpoint-location-ena-dis.exp: New file.
Diffstat (limited to 'gdb/testsuite/gdb.mi')
-rw-r--r--gdb/testsuite/gdb.mi/mi-breakpoint-location-ena-dis.cc36
-rw-r--r--gdb/testsuite/gdb.mi/mi-breakpoint-location-ena-dis.exp56
2 files changed, 92 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.mi/mi-breakpoint-location-ena-dis.cc b/gdb/testsuite/gdb.mi/mi-breakpoint-location-ena-dis.cc
new file mode 100644
index 00000000000..981fbc8d82f
--- /dev/null
+++ b/gdb/testsuite/gdb.mi/mi-breakpoint-location-ena-dis.cc
@@ -0,0 +1,36 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+ Copyright 2018 Free Software Foundation, Inc.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+static int
+add (int a, int b)
+{
+ return a + b;
+}
+
+static double
+add (double a, double b)
+{
+ return a + b;
+}
+
+int
+main (void)
+{
+ int i = add (3, 4);
+ double d = add (3.0, 4.0);
+ return 1;
+}
diff --git a/gdb/testsuite/gdb.mi/mi-breakpoint-location-ena-dis.exp b/gdb/testsuite/gdb.mi/mi-breakpoint-location-ena-dis.exp
new file mode 100644
index 00000000000..03e03d23657
--- /dev/null
+++ b/gdb/testsuite/gdb.mi/mi-breakpoint-location-ena-dis.exp
@@ -0,0 +1,56 @@
+# Copyright 2018 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+# Tests whether =breakpoint=modified notification is sent when a single
+# breakpoint location is enabled or disabled via CLI.
+
+load_lib mi-support.exp
+set MIFLAGS "-i=mi"
+
+gdb_exit
+if {[mi_gdb_start]} {
+ continue
+}
+
+#
+# Start here
+#
+standard_testfile .cc
+
+if {[gdb_compile "$srcdir/$subdir/$srcfile" $binfile executable {debug c++}] != "" } {
+ return -1
+}
+
+mi_run_to_main
+
+mi_gdb_test "break add" \
+ {(&.*)*.*~"Breakpoint 2 at.*\\n".*=breakpoint-created,bkpt=\{number="2",type="breakpoint".*\},\{number="2.1",enabled="y".*\}.*\n\^done} \
+ "break add"
+
+# Modify enableness through MI commands shouldn't trigger MI
+# notification.
+mi_gdb_test "-break-disable 2.2" "\\^done" "-break-disable 2.2"
+mi_gdb_test "-break-enable 2.2" "\\^done" "-break-enable 2.2"
+
+# Modify enableness through CLI commands should trigger MI
+# notification.
+mi_gdb_test "dis 2.2" \
+ {.*=breakpoint-modified,bkpt=\{number="2",type="breakpoint".*\},\{number="2.1",enabled="y".*\},\{number="2.2",enabled="n".*\}.*\n\^done} \
+ "dis 2.2"
+mi_gdb_test "en 2.2" \
+ {.*=breakpoint-modified,bkpt=\{number="2",type="breakpoint".*\},\{number="2.1",enabled="y".*\},\{number="2.2",enabled="y".*\}.*\n\^done} \
+ "en 2.2"
+
+mi_gdb_exit