summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ACE/ChangeLog9
-rw-r--r--ACE/tests/Reactor_Notify_Test.cpp4
2 files changed, 8 insertions, 5 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index dcac22a013f..3efa0af8c20 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,7 +1,14 @@
+Thu Mar 15 12:20:31 UTC 2007 Chad Elliott <elliott_c@ociweb.com>
+
+ * tests/Reactor_Notify_Test.cpp:
+
+ Removed the auto_ptr that deleted the Reactor instance. It is
+ managed by the ACE library and doesn't need to be deleted.
+
Wed Mar 14 21:34:03 UTC 2007 William R. Otte <wotte@dre.vanderbilt.edu>
* bin/ciao_tests.lst
-
+
Added requirement for the RT-CCM test called RT_CAPABLE, used to
indicate systems which are able to successfully run a test
involving RT policies.
diff --git a/ACE/tests/Reactor_Notify_Test.cpp b/ACE/tests/Reactor_Notify_Test.cpp
index cd5f03971d2..c657b75a853 100644
--- a/ACE/tests/Reactor_Notify_Test.cpp
+++ b/ACE/tests/Reactor_Notify_Test.cpp
@@ -454,10 +454,6 @@ run_main (int, ACE_TCHAR *[])
{
ACE_START_TEST (ACE_TEXT ("Reactor_Notify_Test"));
- // To automatically delete the ACE_Reactor instance at program
- // termination:
- auto_ptr<ACE_Reactor> r (ACE_Reactor::instance ());
-
int test_result = 0; // Innocent until proven guilty
test_result = run_notify_purge_test ();