aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/dprintf-non-stop.c
diff options
context:
space:
mode:
authorHui Zhu <teawater@gmail.com>2013-06-25 11:37:48 +0000
committerHui Zhu <teawater@gmail.com>2013-06-25 11:37:48 +0000
commit9d6e6e84f73ef7c5410c097a23d5952a99684f5b (patch)
tree6fb90992e7e7f929c15dff6d1cad38e3ee40f6a7 /gdb/testsuite/gdb.base/dprintf-non-stop.c
parentd1706f383db8e648486e0bda24e182d7233d6674 (diff)
downloadgdb-9d6e6e84f73ef7c5410c097a23d5952a99684f5b.zip
gdb-9d6e6e84f73ef7c5410c097a23d5952a99684f5b.tar.gz
gdb-9d6e6e84f73ef7c5410c097a23d5952a99684f5b.tar.bz2
2013-06-25 Yao Qi <yao@codesourcery.com>
Hui Zhu <hui@codesourcery.com> Pedro Alves <palves@redhat.com> PR breakpoints/15075 PR breakpoints/15434 * breakpoint.c (bpstat_stop_status): Call b->ops->after_condition_true. (update_dprintf_command_list): Don't append "continue" command to the command list of dprintf breakpoint. (base_breakpoint_after_condition_true): New function. (base_breakpoint_ops): Add base_breakpoint_after_condition_true. (dprintf_after_condition_true): New function. (initialize_breakpoint_ops): Set dprintf_after_condition_true. * breakpoint.h (breakpoint_ops): Add after_condition_true. 2013-06-25 Yao Qi <yao@codesourcery.com> Hui Zhu <hui@codesourcery.com> Pedro Alves <palves@redhat.com> PR breakpoints/15075 PR breakpoints/15434 * gdb.base/dprintf-next.c: New file. * gdb.base/dprintf-next.exp: New file. * gdb.base/dprintf-non-stop.c: New file. * gdb.base/dprintf-non-stop.exp: New file. * gdb.base/dprintf.exp: Don't check "continue" in the output of "info breakpoints". * gdb.mi/mi-breakpoint-changed.exp (test_insert_delete_modify): Don't check "continue" in script field.
Diffstat (limited to 'gdb/testsuite/gdb.base/dprintf-non-stop.c')
-rw-r--r--gdb/testsuite/gdb.base/dprintf-non-stop.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.base/dprintf-non-stop.c b/gdb/testsuite/gdb.base/dprintf-non-stop.c
new file mode 100644
index 0000000..2d25d9e
--- /dev/null
+++ b/gdb/testsuite/gdb.base/dprintf-non-stop.c
@@ -0,0 +1,30 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+ Copyright (C) 2013 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/>. */
+
+void
+foo ()
+{
+}
+
+int
+main ()
+{
+ sleep (1);
+ foo ();
+ sleep (3);
+ return 0;
+}