summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2004-02-07 15:04:06 +0000
committerbala <balanatarajan@users.noreply.github.com>2004-02-07 15:04:06 +0000
commite6a88635a9827498771ae4c051edccdf8ffd1dff (patch)
tree159283f3a46fac96d3116989721b61520198e595
parent3826d66af968af32d0e43a03578d547bf55ac638 (diff)
downloadATCD-e6a88635a9827498771ae4c051edccdf8ffd1dff.tar.gz
ChangeLogTag:Sat Feb 7 09:02:54 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog9
-rw-r--r--TAO/tests/AMI_Buffering/client.cpp2
-rw-r--r--TAO/tests/Blocking_Sync_None/client.cpp4
-rw-r--r--TAO/tests/Oneway_Buffering/client.cpp2
4 files changed, 13 insertions, 4 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 0270bd6afad..bed807a6d2a 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,12 @@
+Sat Feb 7 09:02:54 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * tests/AMI_Buffering/client.cpp:
+ * tests/Blocking_Sync_None/client.cpp:
+ * tests/Oneway_Buffering/client.cpp:
+
+ Fixed warnings that were caused by comparison between signed
+ and unsigned integers.
+
Sat Feb 7 14:18:54 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
* docs/tutorials/Quoter/Event_Service/client.cpp:
diff --git a/TAO/tests/AMI_Buffering/client.cpp b/TAO/tests/AMI_Buffering/client.cpp
index 9ee753488cb..ad587997591 100644
--- a/TAO/tests/AMI_Buffering/client.cpp
+++ b/TAO/tests/AMI_Buffering/client.cpp
@@ -20,7 +20,7 @@ int run_buffer_size_test = 0;
const int PAYLOAD_LENGTH = 1024;
const int BUFFERED_MESSAGES_COUNT = 50;
-const int TIMEOUT_MILLISECONDS = 50;
+const unsigned int TIMEOUT_MILLISECONDS = 50;
const int BUFFER_SIZE = 64 * PAYLOAD_LENGTH;
/// Check that no more than 10% of the messages are not sent.
diff --git a/TAO/tests/Blocking_Sync_None/client.cpp b/TAO/tests/Blocking_Sync_None/client.cpp
index 9cfcfdd6142..e4a83e7c146 100644
--- a/TAO/tests/Blocking_Sync_None/client.cpp
+++ b/TAO/tests/Blocking_Sync_None/client.cpp
@@ -98,8 +98,8 @@ main (int argc, char *argv[])
ACE_TRY_CHECK;
const int payload_length = 65536;
- const int sleep_milliseconds = 20;
- const int sleep_microseconds = sleep_milliseconds * 1000;
+ const unsigned int sleep_milliseconds = 20;
+ const unsigned int sleep_microseconds = sleep_milliseconds * 1000;
Test::Payload payload(payload_length);
payload.length (payload_length);
diff --git a/TAO/tests/Oneway_Buffering/client.cpp b/TAO/tests/Oneway_Buffering/client.cpp
index 5a2ecd7e481..40138d5ea2e 100644
--- a/TAO/tests/Oneway_Buffering/client.cpp
+++ b/TAO/tests/Oneway_Buffering/client.cpp
@@ -20,7 +20,7 @@ int run_buffer_size_test = 0;
const int PAYLOAD_LENGTH = 1024;
const int BUFFERED_MESSAGES_COUNT = 50;
-const int TIMEOUT_MILLISECONDS = 50;
+const unsigned int TIMEOUT_MILLISECONDS = 50;
const int BUFFER_SIZE = 64 * PAYLOAD_LENGTH;
/// Check that no more than 10% of the messages are not sent.