summaryrefslogtreecommitdiff
path: root/ACE/tests/Intrusive_Auto_Ptr_Test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Intrusive_Auto_Ptr_Test.cpp')
-rw-r--r--ACE/tests/Intrusive_Auto_Ptr_Test.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/ACE/tests/Intrusive_Auto_Ptr_Test.cpp b/ACE/tests/Intrusive_Auto_Ptr_Test.cpp
index 0fbff2fc8e4..bc49d843e0b 100644
--- a/ACE/tests/Intrusive_Auto_Ptr_Test.cpp
+++ b/ACE/tests/Intrusive_Auto_Ptr_Test.cpp
@@ -79,25 +79,25 @@ int run_main (int, ACE_TCHAR *[])
One *theone (new One(0));
{
- ACE_ASSERT (theone->has_refs (0));
- ACE_ASSERT (!One::was_released ());
+ ACE_TEST_ASSERT (theone->has_refs (0));
+ ACE_TEST_ASSERT (!One::was_released ());
ACE_Intrusive_Auto_Ptr<One> ip2(theone);
{
- ACE_ASSERT (theone->has_refs (1));
- ACE_ASSERT (!One::was_released ());
+ ACE_TEST_ASSERT (theone->has_refs (1));
+ ACE_TEST_ASSERT (!One::was_released ());
ACE_Intrusive_Auto_Ptr<One> ip2(theone);
- ACE_ASSERT (theone->has_refs (2));
- ACE_ASSERT (!One::was_released ());
+ ACE_TEST_ASSERT (theone->has_refs (2));
+ ACE_TEST_ASSERT (!One::was_released ());
}
- ACE_ASSERT (theone->has_refs (1));
- ACE_ASSERT (!One::was_released ());
+ ACE_TEST_ASSERT (theone->has_refs (1));
+ ACE_TEST_ASSERT (!One::was_released ());
}
- ACE_ASSERT (One::was_released());
+ ACE_TEST_ASSERT (One::was_released());
ACE_END_TEST;
return 0;