summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-10 03:50:17 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-10 03:50:17 +0000
commit07df874fc46894051538e1df401680a566c9b44f (patch)
tree8c95f7e1f505f59ce93851dc9a3c50066f36a88a
parent726b71273a37a792326fbd745a9d5fa10922cdab (diff)
downloadATCD-07df874fc46894051538e1df401680a566c9b44f.tar.gz
ChangeLogTag:Tue Dec 9 21:48:52 1997 Carlos O'Ryan <coryan@macarena.cs.wustl.edu>
-rw-r--r--TAO/ChangeLog-98c6
-rw-r--r--TAO/tests/Cubit/TAO/IDL_Cubit/clnt.cpp4
2 files changed, 10 insertions, 0 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c
index 90c35acb576..8b8094c5747 100644
--- a/TAO/ChangeLog-98c
+++ b/TAO/ChangeLog-98c
@@ -1,3 +1,9 @@
+Tue Dec 9 21:48:52 1997 Carlos O'Ryan <coryan@macarena.cs.wustl.edu>
+
+ * tests/Cubit/TAO/IDL_Cubit/clnt.cpp:
+ The sequence test is not running right now, I'm commenting it
+ out until we can make it work properly.
+
Tue Dec 9 18:02:43 1997 Chris Cleeland <cleeland@cs.wustl.edu>
* tao/orb_core.cpp: The moral of this changelog entry is to be
diff --git a/TAO/tests/Cubit/TAO/IDL_Cubit/clnt.cpp b/TAO/tests/Cubit/TAO/IDL_Cubit/clnt.cpp
index 4e757745bd3..9f92dbb1bd4 100644
--- a/TAO/tests/Cubit/TAO/IDL_Cubit/clnt.cpp
+++ b/TAO/tests/Cubit/TAO/IDL_Cubit/clnt.cpp
@@ -564,7 +564,9 @@ Cubit_Client::run (void)
this->cube_octet (i);
this->cube_long (i);
this->cube_struct (i);
+#if defined (TAO_ALSO_TEST_SEQUENCES)
this->cube_sequence (i);
+#endif /* defined (TAO_ALSO_TEST_SEQUENCES) */
}
// stop the timer.
@@ -630,6 +632,7 @@ Cubit_Client::run (void)
// compute call average call time.
this->print_stats ("cube_union_dii call", elapsed_time);
+#if defined (TAO_ALSO_TEST_SEQUENCES)
// Sequences
timer.start ();
this->call_count_ = 0;
@@ -645,6 +648,7 @@ Cubit_Client::run (void)
timer.elapsed_time (elapsed_time);
// compute call average call time.
this->print_stats ("cube_sequence", elapsed_time);
+#endif /* defined (TAO_ALSO_TEST_SEQUENCES) */