summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2001-06-29 16:45:28 +0000
committerbala <balanatarajan@users.noreply.github.com>2001-06-29 16:45:28 +0000
commit2ac972614eb96abb2821b251568a37abd4c072b5 (patch)
tree78131398a2ab74b65f0b179acea038ad93de64a7
parentce1dafa07082cafeedddcbd88a305628408993f8 (diff)
downloadATCD-2ac972614eb96abb2821b251568a37abd4c072b5.tar.gz
ChangeLogTag: Fri Jun 29 11:41:35 2001 Balachandran Natarajan <bala@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a11
-rw-r--r--TAO/tests/Big_Reply/client.cpp2
-rw-r--r--TAO/tests/Big_Reply/server.cpp2
3 files changed, 13 insertions, 2 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index a330e87893e..78148e9eaa0 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,14 @@
+Fri Jun 29 11:41:35 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/Big_Reply/client.cpp:
+ * tests/Big_Reply/server.cpp: Relaxed the tests a bit. The server
+ now sends only 7MB of data. TAO has this problem of sending one
+ large 8MB data chunk. So got this down to 7MB. The client now
+ requests for data only 10 times instead of 1000 times. After the
+ bug fix in bug 575 branch, it was observed that fetching 10MB of
+ data for a long time slows down the machine a lot. Looks like it
+ is a TCP'ism.
+
Fri Jun 29 09:06:56 2001 Ossama Othman <ossama@uci.edu>
* tao/ORBInitInfo.h (TAO_ORBInitInfo_var):
diff --git a/TAO/tests/Big_Reply/client.cpp b/TAO/tests/Big_Reply/client.cpp
index ccfd790974f..69777719ff9 100644
--- a/TAO/tests/Big_Reply/client.cpp
+++ b/TAO/tests/Big_Reply/client.cpp
@@ -62,7 +62,7 @@ main (int argc, char *argv[])
Client_Task client_task (reply_gen.in (),
- 1000,
+ 10,
ACE_Thread_Manager::instance ());
if (client_task.activate (THR_NEW_LWP | THR_JOINABLE, 4, 1) == -1)
diff --git a/TAO/tests/Big_Reply/server.cpp b/TAO/tests/Big_Reply/server.cpp
index e52bdafbdd3..d989862246e 100644
--- a/TAO/tests/Big_Reply/server.cpp
+++ b/TAO/tests/Big_Reply/server.cpp
@@ -9,7 +9,7 @@ ACE_RCSID(Big_Reply, server, "$Id$")
const char *ior_output_file = "test.ior";
// We can change this value if wanted..
-const CORBA::ULong data_size = 10000000;
+const CORBA::ULong data_size = 7340032;
int
parse_args (int argc, char *argv[])