[PATCH] fix PR 15180 "May only run agent-printf on the target"

Hui Zhu teawater@gmail.com
Sun Jun 30 17:15:00 GMT 2013


Hi Pedro,

Thanks for your review.

On Thu, Jun 27, 2013 at 1:58 AM, Pedro Alves <palves@redhat.com> wrote:
> On 06/17/2013 08:47 AM, Hui Zhu wrote:
>> Hi,
>>
>> This patch is for PR 15180 too.  Because it depends on patch in
>> http://sourceware.org/ml/gdb-patches/2013-06/msg00139.html
>> So I post it in another thread.
>>
>> It make dprintf_after_condition_true doesn't do actions if dprintf
>> style is agent.  Because the actions is already did in agent.
>
> If dprintf style is agent, then the target doesn't report events
> for such hits.  If we happen to see a trap reported for the
> same address as another breakpoint, the trap is surely not explained
> by the dprintf.  IOW, we shouldn't have a bpstat a dprintf w/ style
> agent at all.  What is need is to override the breakpoint_hit method
> of dprintf_breakpoint_ops to always return false for agent style dprintfs.
>
> Or maybe I'm missing something.  I have a hard time going from
> the bug description in the PR to the patch.

OK.  I add dprintf_check_status in the new patch according to your comments.

>
>>
>> The test patch test the issue about 15180.
>
> Hmm, I get:
>
> Running target native-gdbserver
> Using ../../../src/gdb/testsuite/boards/../boards/native-gdbserver.exp as board description file for target.
> Using ../../../src/gdb/testsuite/config/gdbserver.exp as tool-and-target-specific interface file.
> Running ../../../src/gdb/testsuite/gdb.base/dprintf-same-addr.exp ...
> FAIL: gdb.base/dprintf-same-addr.exp: agent: First continue (the program exited)
> FAIL: gdb.base/dprintf-same-addr.exp: agent: Second continue (the program is no longer running)
> FAIL: gdb.base/dprintf-same-addr.exp: agent: check i
>
>                 === gdb Summary ===
>
> # of expected passes            16
> # of unexpected failures        3
> # of unsupported tests          1
>

I am sorry that didn't talk this test very clear.  It depend on the
patches in http://sourceware.org/ml/gdb-patches/2013-06/msg00367.html
Could you patch those patches and try again?

Thanks,
Hui

2013-06-30  Hui Zhu  <hui@codesourcery.com>

	PR gdb/15180
	* breakpoint.c (dprintf_check_status): New function.
	(initialize_breakpoint_ops): Set dprintf_check_status.

2013-06-30  Hui Zhu  <hui@codesourcery.com>

	PR gdb/15180
	* gdb.base/dprintf-same-addr.c: New file.
	* gdb.base/dprintf-same-addr.exp: New file.

>
>
>>
>> Thanks,
>> Hui
>>
>> 2013-06-17  Hui Zhu  <hui@codesourcery.com>
>>
>>       PR gdb/15180
>>       * breakpoint.c (dprintf_after_condition_true): Check dprintf style
>>       before do actions.
>>
>> 2013-06-17  Hui Zhu  <hui@codesourcery.com>
>>
>>       PR gdb/15180
>>       * gdb.base/dprintf-same-addr.c: New file.
>>       * gdb.base/dprintf-same-addr.exp: New file.
>>
>
>
> --
> Pedro Alves
-------------- next part --------------
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -13418,6 +13418,18 @@ dprintf_re_set (struct breakpoint *b)
     update_dprintf_command_list (b);
 }
 
+/* Implement the "check_status" breakpoint_ops method for dprintf.  */
+
+static void
+dprintf_check_status (struct bpstats *bs)
+{
+  if (strcmp (dprintf_style, dprintf_style_agent) == 0)
+    {
+      bs->stop = 0;
+      bs->print_it = print_it_noop;
+    }
+}
+
 /* Implement the "print_recreate" breakpoint_ops method for dprintf.  */
 
 static void
@@ -15958,6 +15970,7 @@ initialize_breakpoint_ops (void)
   ops = &dprintf_breakpoint_ops;
   *ops = bkpt_base_breakpoint_ops;
   ops->re_set = dprintf_re_set;
+  ops->check_status = dprintf_check_status;
   ops->resources_needed = bkpt_resources_needed;
   ops->print_it = bkpt_print_it;
   ops->print_mention = bkpt_print_mention;
-------------- next part --------------
--- /dev/null
+++ b/gdb/testsuite/gdb.base/dprintf-same-addr.c
@@ -0,0 +1,35 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+   Copyright (C) 2013 Free Software Foundation, Inc.
+   Contributed by Hui Zhu  <hui@codesourcery.com>
+
+   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/>.  */
+
+#include <stdio.h>
+
+int
+main ()
+{
+  int i;
+
+  for (i=0; i < 99; i++)
+    {
+      printf("Hello\n");	/* test line  */
+
+      /* Without this line, test with fprintf will not work.  */
+      fprintf (stderr, "world\n");
+    }
+
+  return 0;
+}
--- /dev/null
+++ b/gdb/testsuite/gdb.base/dprintf-same-addr.exp
@@ -0,0 +1,82 @@
+#   Copyright (C) 2013 Free Software Foundation, Inc.
+#   Contributed by Hui Zhu  <hui@codesourcery.com>
+
+# 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/>.
+
+standard_testfile
+
+if [prepare_for_testing "failed to prepare for dprintf with non-stop" \
+    ${testfile} ${srcfile} {debug}] {
+    return -1
+}
+
+set bp_location [gdb_get_line_number "test line"]
+
+proc continue_dprintf {args} {
+    with_test_prefix $args {
+	global bp_location
+
+	gdb_test "dprintf $bp_location,\"Hello\\n\"" "Dprintf .*"
+	gdb_test_no_output {set $bpnum1=$bpnum}
+	gdb_breakpoint $bp_location
+	gdb_test_no_output {set $bpnum2=$bpnum}
+
+	gdb_test "continue" "Breakpoint \[0-9\]+, main .*" "First continue"
+
+	gdb_test_no_output "condition \$bpnum1 i>10"
+	gdb_test_no_output "condition \$bpnum2 i>15"
+
+	gdb_test "continue" "Breakpoint \[0-9\]+, main .*" "Second continue"
+
+	gdb_test "p i" "\[0-9\]+ = 16" "check i"
+    }
+}
+
+if ![runto main] {
+    return -1
+}
+gdb_test_no_output "set dprintf-style gdb" "Set dprintf style to gdb"
+continue_dprintf "gdb"
+
+if ![target_info exists gdb,noinferiorio] {
+    if ![runto main] {
+	return -1
+    }
+    gdb_test_no_output "set dprintf-style call" "Set dprintf style to call"
+    continue_dprintf "call"
+
+    if ![runto main] {
+	return -1
+    }
+    gdb_test_no_output "set dprintf-function fprintf" "set dprintf-channel stderr"
+    gdb_test_no_output "set dprintf-channel stderr" "set dprintf channel"
+    continue_dprintf "fprintf"
+} else {
+    unsupported "test dprintf-style call"
+}
+
+if ![runto main] {
+    return -1
+}
+gdb_test "dprintf main,\"Hello\\n\"" "Dprintf .*"
+set msg "Set dprintf style to agent"
+gdb_test_multiple "set dprintf-style agent" $msg {
+    -re "warning: Target cannot run dprintf commands.*\r\n$gdb_prompt $" {
+	unsupported $msg
+    }
+    -re ".*$gdb_prompt $" {
+	pass $msg
+	continue_dprintf "agent"
+    }
+}


More information about the Gdb-patches mailing list