summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjp4 <jp4@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-27 00:43:23 +0000
committerjp4 <jp4@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-27 00:43:23 +0000
commite4c881c8e4705da0447c432945c954e34ec44f70 (patch)
tree81e641d729f74933088525cfdd546d6f2dcfb736
parent4b0f63cd8c53a381b9a8353a09ac806b0d11b07d (diff)
downloadATCD-e4c881c8e4705da0447c432945c954e34ec44f70.tar.gz
*** empty log message ***
-rw-r--r--TAO/ChangeLog-98c11
-rw-r--r--TAO/performance-tests/Cubit/TAO/DII_Cubit/client.cpp8
-rw-r--r--TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Server.cpp2
3 files changed, 13 insertions, 8 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c
index 923b0a044fc..e17f29ab860 100644
--- a/TAO/ChangeLog-98c
+++ b/TAO/ChangeLog-98c
@@ -1,3 +1,14 @@
+Mon Oct 26 18:40:03 1998 Jeff Parsons <jp4@cs.wustl.edu>
+
+ * TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Server.cpp:
+ * TAO/performance-tests/Cubit/TAO/DII_Cubit/client.cpp:
+ * TAO/performance-tests/Cubit/TAO/IDL_Cubit/run_test.pl:
+ Fixed a bug reported in the DII Cubit test. Removed -s
+ option from server (harmful), also from client (not
+ harmful but useless) and removed these args from the
+ perl file. Also fixed a typo in the perl file (thanks,
+ Carlos).
+
Mon Oct 26 18:28:36 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
* Updated dependencies for all the Makefiles.
diff --git a/TAO/performance-tests/Cubit/TAO/DII_Cubit/client.cpp b/TAO/performance-tests/Cubit/TAO/DII_Cubit/client.cpp
index 9cf30b229a3..294b2da1c52 100644
--- a/TAO/performance-tests/Cubit/TAO/DII_Cubit/client.cpp
+++ b/TAO/performance-tests/Cubit/TAO/DII_Cubit/client.cpp
@@ -35,7 +35,7 @@
ACE_RCSID(DII_Cubit, client, "$Id$")
// Some constants used below.
- const CORBA::ULong DEFAULT_LOOP_COUNT = 250;
+const CORBA::ULong DEFAULT_LOOP_COUNT = 250;
const char *DEFAULT_FACTORY_IOR = "ior00";
const int SMALL_OCTET_SEQ_LENGTH = 16;
const int LARGE_OCTET_SEQ_LENGTH = 4096;
@@ -399,7 +399,7 @@ DII_Cubit_Client::init_naming_service (void)
int
DII_Cubit_Client::parse_args (void)
{
- ACE_Get_Opt opts (argc_, argv_, "dn:i:f:xs");
+ ACE_Get_Opt opts (argc_, argv_, "dn:i:f:x");
int c;
int result;
@@ -428,9 +428,6 @@ DII_Cubit_Client::parse_args (void)
case 'x': // Shut down server after test run.
this->shutdown_ = 1;
break;
- case 's': // Don't use the TAO naming service.
- this->use_naming_service_ = 0;
- break;
case '?':
default:
ACE_ERROR_RETURN ((LM_ERROR,
@@ -440,7 +437,6 @@ DII_Cubit_Client::parse_args (void)
" [-i cubit-factory-IOR]"
" [-f filename]"
" [-x]"
- " [-s]"
"\n",
this->argv_ [0]),
-1);
diff --git a/TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Server.cpp b/TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Server.cpp
index 9c549011b4a..5014f9ba1e3 100644
--- a/TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Server.cpp
+++ b/TAO/performance-tests/Cubit/TAO/IDL_Cubit/Cubit_Server.cpp
@@ -33,9 +33,7 @@ Cubit_Server::parse_args (void)
ACE_ERROR_RETURN ((LM_ERROR,
"usage: %s"
" [-d]"
- " [-n] <num of cubit objects>"
" [-o] <ior_output_file>"
- " [-s]"
"\n",
argv_ [0]),
1);