summaryrefslogtreecommitdiff
path: root/ACE/tests/Thread_Timer_Queue_Adapter_Test.cpp
diff options
context:
space:
mode:
authormcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-12-17 14:45:11 +0000
committermcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2010-12-17 14:45:11 +0000
commit8b5e3a841da915b71c29c4967436f6089ed32873 (patch)
tree310942d51cfcc5b07025697dd3e562aa7166f935 /ACE/tests/Thread_Timer_Queue_Adapter_Test.cpp
parentc28d3bdcfa39f4cb30c37c3c507dc0ef40a370ac (diff)
downloadATCD-8b5e3a841da915b71c29c4967436f6089ed32873.tar.gz
Fri Dec 17 14:42:53 UTC 2010 Martin Corino <mcorino@remedy.nl>
* */*.*: Merged RemedyWork branch.
Diffstat (limited to 'ACE/tests/Thread_Timer_Queue_Adapter_Test.cpp')
-rw-r--r--ACE/tests/Thread_Timer_Queue_Adapter_Test.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/tests/Thread_Timer_Queue_Adapter_Test.cpp b/ACE/tests/Thread_Timer_Queue_Adapter_Test.cpp
index 6b74e4a81da..4531451ac83 100644
--- a/ACE/tests/Thread_Timer_Queue_Adapter_Test.cpp
+++ b/ACE/tests/Thread_Timer_Queue_Adapter_Test.cpp
@@ -201,7 +201,7 @@ run_main (int, ACE_TCHAR *[])
ACE_OS::gettimeofday() + ACE_Time_Value(1, 0));
ACE_OS::sleep(ACE_Time_Value(1, 100 * 1000));
- ACE_ASSERT(iCallCount == 1);
+ ACE_TEST_ASSERT(iCallCount == 1);
delete p_TestEventHandler;
@@ -228,7 +228,7 @@ run_main (int, ACE_TCHAR *[])
ACE_OS::sleep(ACE_Time_Value(1, 100 * 1000));
- ACE_ASSERT(iCallCount == 0);
+ ACE_TEST_ASSERT(iCallCount == 0);
// Test event handler was deleted by the timer.
@@ -253,12 +253,12 @@ run_main (int, ACE_TCHAR *[])
ACE_Time_Value(1, 0));
ACE_OS::sleep(ACE_Time_Value(3, 500 * 1000));
- ACE_ASSERT(iCallCount == 3);
+ ACE_TEST_ASSERT(iCallCount == 3);
// Cancel the repeating timer
TimerWheelThreadAdapter.cancel(lTimerHandle);
- ACE_ASSERT(iCallCount == 3);
+ ACE_TEST_ASSERT(iCallCount == 3);
ACE_DEBUG((LM_DEBUG,
ACE_TEXT("%I(%t) Success in Repeating timer with cancellation test.\n")));
@@ -290,7 +290,7 @@ run_main (int, ACE_TCHAR *[])
ACE_OS::gettimeofday() + ACE_Time_Value(2, 0));
ACE_OS::sleep(ACE_Time_Value(3, 0));
- ACE_ASSERT(iCallCount == 3);
+ ACE_TEST_ASSERT(iCallCount == 3);
delete p_TestEventHandler;