summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2002-12-05 02:21:30 +0000
committerSteve Huston <shuston@riverace.com>2002-12-05 02:21:30 +0000
commit0c3c4b298d77b8c4170d79bd9c77407af319742a (patch)
treeba95e32aa13548b9fbe505492124ead963923f75
parentf417a8fa0fb63bda2ab79d655a3d272e0141fcf2 (diff)
downloadATCD-0c3c4b298d77b8c4170d79bd9c77407af319742a.tar.gz
ChangeLogTag:Wed Dec 4 21:18:31 2002 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLogs/ChangeLog-03a5
-rw-r--r--tests/Proactor_Timer_Test.cpp94
3 files changed, 58 insertions, 46 deletions
diff --git a/ChangeLog b/ChangeLog
index 0fb7455f0aa..747267ee1df 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Dec 4 21:18:31 2002 Steve Huston <shuston@riverace.com>
+
+ * ace/Proactor_Timer_Test.cpp: Fix incorrect use of pointer-integer
+ casting. Log pointers with %@, not %x.
+
Wed Dec 4 21:11:41 2002 Steve Huston <shuston@riverace.com>
* tests/Proactor_Test.cpp: Set all the default options and values
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 0fb7455f0aa..747267ee1df 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,8 @@
+Wed Dec 4 21:18:31 2002 Steve Huston <shuston@riverace.com>
+
+ * ace/Proactor_Timer_Test.cpp: Fix incorrect use of pointer-integer
+ casting. Log pointers with %@, not %x.
+
Wed Dec 4 21:11:41 2002 Steve Huston <shuston@riverace.com>
* tests/Proactor_Test.cpp: Set all the default options and values
diff --git a/tests/Proactor_Timer_Test.cpp b/tests/Proactor_Timer_Test.cpp
index 83eca201650..b6cd31fab59 100644
--- a/tests/Proactor_Timer_Test.cpp
+++ b/tests/Proactor_Timer_Test.cpp
@@ -35,9 +35,9 @@ ACE_RCSID (tests,
#include "ace/High_Res_Timer.h"
#include "ace/Asynch_IO.h"
-static int done = 0;
-static int count = 0;
-static int odd = 0;
+static int done = 0;
+static size_t count = 0;
+static int odd = 0;
class Time_Handler : public ACE_Handler
{
@@ -66,36 +66,30 @@ Time_Handler::Time_Handler (void)
}
void
-Time_Handler::handle_time_out (const ACE_Time_Value &tv, const void *arg)
+Time_Handler::handle_time_out (const ACE_Time_Value &, const void *arg)
{
- long current_count = ACE_reinterpret_cast (long, arg);
- if (current_count >= 0)
- ACE_ASSERT (current_count == count);
+ size_t current_count = *(ACE_reinterpret_cast (const size_t *, arg));
+ if (current_count != count)
+ ACE_ERROR ((LM_ERROR,
+ ACE_TEXT ("Expected timer %d, not %d\n"),
+ count,
+ current_count));
ACE_DEBUG ((LM_DEBUG,
- ACE_TEXT ("[%x] Timer id %d with count #%d|%d timed out at %d!\n"),
+ ACE_TEXT ("[%@] Timer id %d with count #%d|%d expired.\n"),
this,
this->timer_id (),
count,
- current_count,
- tv.sec ()));
+ current_count));
- if (current_count == long (ACE_MAX_TIMERS - 1))
+ if (current_count == (ACE_MAX_TIMERS - 1))
done = 1;
else if (count == ACE_MAX_TIMERS - 1)
{
done = 1;
return;
}
- else if (current_count == -1)
- {
- int result = ACE_Proactor::instance ()->cancel_timer (this->timer_id ());
- result = ACE_Proactor::instance ()->schedule_timer(*this,
- (const void *) -1,
- ACE_Time_Value(count + 1));
- ACE_ASSERT (result != -1);
- this->timer_id(result);
- }
+
count += (1 + odd);
return;
}
@@ -119,15 +113,18 @@ test_registering_all_handlers (void)
__LINE__,
ACE_TEXT_CHAR_TO_TCHAR (__FILE__));
Time_Handler rt[ACE_MAX_TIMERS];
- int t_id[ACE_MAX_TIMERS];
-
- for (int i = 0; i < int (ACE_MAX_TIMERS); i++)
+ long t_id[ACE_MAX_TIMERS];
+ size_t which[ACE_MAX_TIMERS];
+ long secs = 0;
+ size_t i = 0;
+ for ( ; i < ACE_MAX_TIMERS; i++, secs++)
{
+ which[i] = i;
t_id[i] =
- ACE_Proactor::instance ()->schedule_timer (rt[i],
- (const void *) i,
- ACE_Time_Value (2 * i + 1));
- ACE_ASSERT (t_id[i] != -1);
+ ACE_Proactor::instance ()->schedule_timer
+ (rt[i], &which[i], ACE_Time_Value (2 * secs + 1));
+ if (t_id[i] == -1)
+ ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("schedule_timer")));
rt[i].timer_id (t_id[i]);
}
@@ -142,18 +139,21 @@ test_registering_one_handler (void)
__LINE__,
ACE_TEXT_CHAR_TO_TCHAR (__FILE__));
Time_Handler rt[ACE_MAX_TIMERS];
- int t_id[ACE_MAX_TIMERS];
+ long t_id[ACE_MAX_TIMERS];
+ size_t which[ACE_MAX_TIMERS];
done = 0;
count = 0;
-
- for (int i = 0; (u_long)i < ACE_MAX_TIMERS; i++)
+ long secs = 0;
+ size_t i = 0;
+ for ( ; i < ACE_MAX_TIMERS; i++, secs++)
{
+ which[i] = i;
t_id[i] =
- ACE_Proactor::instance ()->schedule_timer (rt[0],
- (const void *) i,
- ACE_Time_Value (2 * i + 1));
- ACE_ASSERT (t_id[i] != -1);
+ ACE_Proactor::instance ()->schedule_timer
+ (rt[0], &which[i], ACE_Time_Value (2 * secs + 1));
+ if (t_id[i] == -1)
+ ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("schedule_timer")));
}
while (!done)
@@ -167,28 +167,30 @@ test_canceling_odd_timers (void)
__LINE__,
ACE_TEXT_CHAR_TO_TCHAR (__FILE__));
Time_Handler rt[ACE_MAX_TIMERS];
- int t_id[ACE_MAX_TIMERS];
+ long t_id[ACE_MAX_TIMERS];
+ size_t which[ACE_MAX_TIMERS];
done = 0;
count = 1;
odd = 1;
-
- for (int i = 0; (u_long)i < ACE_MAX_TIMERS; i++)
+ size_t i = 0;
+ long secs = 0;
+ for ( ; i < ACE_MAX_TIMERS; i++, secs++)
{
- t_id[i] = ACE_Proactor::instance ()->schedule_timer (rt[i],
- (const void *) i,
- ACE_Time_Value (2 * i + 1));
- ACE_ASSERT (t_id[i] != -1);
+ which[i] = i;
+ t_id[i] = ACE_Proactor::instance ()->schedule_timer
+ (rt[i], &which[i], ACE_Time_Value (2 * secs + 1));
+ if (t_id[i] == -1)
+ ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("schedule_timer")));
rt[i].timer_id (t_id[i]);
}
- for (size_t j = 0; (u_long) j < ACE_MAX_TIMERS; j++)
+ for (i = 0; i < ACE_MAX_TIMERS; i++)
// Cancel handlers with odd numbered timer ids.
- if (ACE_ODD (rt[j].timer_id ()))
+ if (ACE_ODD (rt[i].timer_id ()))
{
- int result =
- ACE_Proactor::instance ()->cancel_timer (rt[j].timer_id ());
- ACE_ASSERT (result != -1);
+ if (ACE_Proactor::instance ()->cancel_timer (rt[i].timer_id ()) == -1)
+ ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("cancel_timer")));
}
while (!done)