* gdb.gdb/observer.exp (test_normal_stop_notifications): Update

call to observer_notify_normal_stop.
This commit is contained in:
Joel Brobecker 2004-04-16 17:29:43 +00:00
parent e0270fd9c1
commit 9099067423
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-04-16 Joel Brobecker <brobecker@gnat.com>
* gdb.gdb/observer.exp (test_normal_stop_notifications): Update
call to observer_notify_normal_stop.
2004-04-15 Andrew Cagney <cagney@redhat.com>
* gdb.base/siginfo.c: New file.

View File

@ -153,7 +153,10 @@ proc reset_counters { } {
proc test_normal_stop_notifications { first second third message } {
reset_counters
gdb_test "call observer_notify_normal_stop ()" "" \
# Call observer_notify_normal_stop. 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)" "" \
"sending notification ($message)"
check_counters $first $second $third $message
}