From: Vladimir Prus <vladimir@codesourcery.com>
To: Pedro Alves <pedro@codesourcery.com>
Cc: gdb-patches@sourceware.org
Subject: Re: [RFA] fix *stopped for CLI commands
Date: Tue, 17 Feb 2009 19:25:00 -0000 [thread overview]
Message-ID: <200902172219.49218.vladimir@codesourcery.com> (raw)
In-Reply-To: <200902151547.28642.pedro@codesourcery.com>
[-- Attachment #1: Type: text/plain, Size: 738 bytes --]
On Sunday 15 February 2009 18:47:28 Pedro Alves wrote:
> Oops, I'm seeing this:
>
> Running ../../../src/gdb/testsuite/gdb.gdb/observer.exp ...
> FAIL: gdb.gdb/observer.exp: second observer attached; check second observer counter value
Apologies, I've shortcutted the testing by running on MI tests, since "obviously" that
was a MI-only change.
> Alternatively, we could use a safer and more future proof test specific
> notification in doc/observer.texi, instead of reusing the normal_stop
> notification. Say,
>
> @deftypefun void test_notification (int @var{somearg})
> For internal testing. Do not use. See testsuite/gdb.gdb/observer.exp.
> @end deftypefun
Here's a patch implementing this approach. OK?
- Volodya
[-- Attachment #2: test_observer.diff --]
[-- Type: text/x-diff, Size: 7705 bytes --]
commit 1160d59db83b2a172c980bb7fa5c9dc9961d1b18
Author: Vladimir Prus <vladimir@codesourcery.com>
Date: Tue Feb 17 22:19:34 2009 +0300
Unbreak observer tests.
gdb/
* observer.c (observer_test_first_notification_function)
(observer_test_second_notification_function)
(observer_test_third_notification_function): Adjust prototype.
gdb/doc/
* observer.texi (test_notification): New observer.
gdb/testsuite/
* gdb.gdb/observer.exp: Use test_notification observer, not
normal_stop, everywhere.
(test_normal_stop_notifications): Rename to...
(test_notifications): ...this.
(test_observer_normal_stop): Rename to...
(test_observer): ...this.
diff --git a/gdb/doc/observer.texi b/gdb/doc/observer.texi
index c8e8b96..04f5034 100644
--- a/gdb/doc/observer.texi
+++ b/gdb/doc/observer.texi
@@ -200,3 +200,8 @@ Either @value{GDBN} detached from the inferior, or the inferior
exited. The argument @var{pid} identifies the inferior.
@end deftypefun
+ @deftypefun void test_notification (int @var{somearg})
+This observer is used for internal testing. Do not use.
+See testsuite/gdb.gdb/observer.exp.
+ @end deftypefun
+
diff --git a/gdb/observer.c b/gdb/observer.c
index 8a059c1..106bfcd 100644
--- a/gdb/observer.c
+++ b/gdb/observer.c
@@ -181,19 +181,19 @@ int observer_test_second_observer = 0;
int observer_test_third_observer = 0;
void
-observer_test_first_notification_function (struct bpstats *bs)
+observer_test_first_notification_function (int arg)
{
observer_test_first_observer++;
}
void
-observer_test_second_notification_function (struct bpstats *bs)
+observer_test_second_notification_function (int arg)
{
observer_test_second_observer++;
}
void
-observer_test_third_notification_function (struct bpstats *bs)
+observer_test_third_notification_function (int arg)
{
observer_test_third_observer++;
}
diff --git a/gdb/testsuite/gdb.gdb/observer.exp b/gdb/testsuite/gdb.gdb/observer.exp
index afc6909..e57b91b 100644
--- a/gdb/testsuite/gdb.gdb/observer.exp
+++ b/gdb/testsuite/gdb.gdb/observer.exp
@@ -101,32 +101,32 @@ proc setup_test { executable } {
}
proc attach_first_observer { message } {
- gdb_test "set \$first_obs = observer_attach_normal_stop (&observer_test_first_notification_function)" \
+ gdb_test "set \$first_obs = observer_attach_test_notification (&observer_test_first_notification_function)" \
"" "$message; attach first observer"
}
proc attach_second_observer { message } {
- gdb_test "set \$second_obs = observer_attach_normal_stop (&observer_test_second_notification_function)" \
+ gdb_test "set \$second_obs = observer_attach_test_notification (&observer_test_second_notification_function)" \
"" "$message; attach second observer"
}
proc attach_third_observer { message } {
- gdb_test "set \$third_obs = observer_attach_normal_stop (&observer_test_third_notification_function)" \
+ gdb_test "set \$third_obs = observer_attach_test_notification (&observer_test_third_notification_function)" \
"" "$message; attach third observer"
}
proc detach_first_observer { message } {
- gdb_test "call observer_detach_normal_stop (\$first_obs)" \
+ gdb_test "call observer_detach_test_notification (\$first_obs)" \
"" "$message; detach first observer"
}
proc detach_second_observer { message } {
- gdb_test "call observer_detach_normal_stop (\$second_obs)" \
+ gdb_test "call observer_detach_test_notification (\$second_obs)" \
"" "$message; detach second observer"
}
proc detach_third_observer { message } {
- gdb_test "call observer_detach_normal_stop (\$third_obs)" \
+ gdb_test "call observer_detach_test_notification (\$third_obs)" \
"" "$message; detach third observer"
}
@@ -151,21 +151,21 @@ proc reset_counters { message } {
"$message; reset third observer counter"
}
-proc test_normal_stop_notifications { first second third message args } {
+proc test_notifications { first second third message args } {
# Do any initialization
for {set i 0} {$i < [llength $args]} {incr i} {
[lindex $args $i] $message
}
reset_counters $message
- # Call observer_notify_normal_stop. Note that this procedure
+ # Call observer_notify_test_notification. Note that this procedure
# takes one argument, but this argument is ignored by the observer
# callbacks we have installed. So we just pass an arbitrary value.
- gdb_test "call observer_notify_normal_stop (0)" "" \
+ gdb_test "call observer_notify_test_notification (0)" "" \
"$message; sending notification"
check_counters $first $second $third $message
}
-proc test_observer_normal_stop { executable } {
+proc test_observer { executable } {
set setup_result [setup_test $executable]
if {$setup_result <0} then {
@@ -173,56 +173,56 @@ proc test_observer_normal_stop { executable } {
}
# First, try sending a notification without any observer attached.
- test_normal_stop_notifications 0 0 0 "no observer attached"
+ test_notifications 0 0 0 "no observer attached"
# Now, attach one observer, and send a notification.
- test_normal_stop_notifications 0 1 0 "second observer attached" \
+ test_notifications 0 1 0 "second observer attached" \
attach_second_observer
# Remove the observer, and send a notification.
- test_normal_stop_notifications 0 0 0 "second observer detached" \
+ test_notifications 0 0 0 "second observer detached" \
detach_second_observer
# With a new observer.
- test_normal_stop_notifications 1 0 0 "1st observer added" \
+ test_notifications 1 0 0 "1st observer added" \
attach_first_observer
# With 2 observers.
- test_normal_stop_notifications 1 1 0 "2nd observer added" \
+ test_notifications 1 1 0 "2nd observer added" \
attach_second_observer
# With 3 observers.
- test_normal_stop_notifications 1 1 1 "3rd observer added" \
+ test_notifications 1 1 1 "3rd observer added" \
attach_third_observer
# Remove middle observer.
- test_normal_stop_notifications 1 0 1 "2nd observer removed" \
+ test_notifications 1 0 1 "2nd observer removed" \
detach_second_observer
# Remove first observer.
- test_normal_stop_notifications 0 0 1 "1st observer removed" \
+ test_notifications 0 0 1 "1st observer removed" \
detach_first_observer
# Remove last observer.
- test_normal_stop_notifications 0 0 0 "3rd observer removed" \
+ test_notifications 0 0 0 "3rd observer removed" \
detach_third_observer
# Go back to 3 observers, and remove them in a different order...
- test_normal_stop_notifications 1 1 1 "three observers added" \
+ test_notifications 1 1 1 "three observers added" \
attach_first_observer \
attach_second_observer \
attach_third_observer
# Remove the third observer.
- test_normal_stop_notifications 1 1 0 "third observer removed" \
+ test_notifications 1 1 0 "third observer removed" \
detach_third_observer
# Remove the second observer.
- test_normal_stop_notifications 1 0 0 "second observer removed" \
+ test_notifications 1 0 0 "second observer removed" \
detach_second_observer
# Remove the first observer, no more observers.
- test_normal_stop_notifications 0 0 0 "first observer removed" \
+ test_notifications 0 0 0 "first observer removed" \
detach_first_observer
return 0
@@ -262,7 +262,7 @@ remote_file host delete x$tool
gdb_start
set file [remote_download host $GDB_FULLPATH x$tool]
-set result [test_observer_normal_stop $file];
+set result [test_observer $file];
gdb_exit;
catch "remote_file host delete $file";
next prev parent reply other threads:[~2009-02-17 19:20 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-06 7:44 Vladimir Prus
2009-02-06 21:11 ` Tom Tromey
2009-02-07 1:04 ` Joel Brobecker
2009-02-12 8:46 ` Vladimir Prus
2009-02-12 20:37 ` Eli Zaretskii
2009-02-14 20:43 ` Vladimir Prus
2009-02-15 18:22 ` Pedro Alves
2009-02-17 19:25 ` Vladimir Prus [this message]
2009-02-17 19:29 ` Pedro Alves
2009-02-09 20:36 ` Daniel Jacobowitz
2009-02-10 20:50 ` Marc Khouzam
2009-02-10 20:58 ` Vladimir Prus
2009-02-11 14:09 ` Marc Khouzam
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200902172219.49218.vladimir@codesourcery.com \
--to=vladimir@codesourcery.com \
--cc=gdb-patches@sourceware.org \
--cc=pedro@codesourcery.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox