summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-25 15:26:50 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-07-25 15:26:50 +0000
commit05081fc245df355ebf620d04c29da9f5ec3a03f8 (patch)
tree3899c43cbfadf01ac9e102aebcbc25734d4e2bb4
parentea08bdb643e0c1da9ad42bf397953c1f405ebcdf (diff)
downloadATCD-05081fc245df355ebf620d04c29da9f5ec3a03f8.tar.gz
added dump stats after iterations loop
-rw-r--r--TAO/tests/Portable_Interceptors/Benchmark/client.cpp22
1 files changed, 12 insertions, 10 deletions
diff --git a/TAO/tests/Portable_Interceptors/Benchmark/client.cpp b/TAO/tests/Portable_Interceptors/Benchmark/client.cpp
index 008a06694f1..a2f461ede91 100644
--- a/TAO/tests/Portable_Interceptors/Benchmark/client.cpp
+++ b/TAO/tests/Portable_Interceptors/Benchmark/client.cpp
@@ -74,10 +74,11 @@ run_test (Test_Interceptors::Secure_Vault_ptr server,
ACE_CHECK;
if (TAO_debug_level > 0 && i % 100 == 0)
ACE_DEBUG ((LM_DEBUG, "(%P|%t) iteration = %d\n", i));
-
- marker.dump_stats ("Ready method ", gsf, 1);
}
- throughput.dump_results ("Aggregated", gsf);
+
+ marker.dump_stats ("Ready method ", gsf, 1);
+
+ //throughput.dump_results ("Aggregated", gsf);
ACE_TRY
{
@@ -102,12 +103,12 @@ run_test (Test_Interceptors::Secure_Vault_ptr server,
ACE_CHECK;
if (TAO_debug_level > 0 && i % 100 == 0)
ACE_DEBUG ((LM_DEBUG, "(%P|%t) iteration = %d\n", i));
-
- marker.dump_stats ("Authenticate method ", gsf, 2);
-
- ACE_TRY_CHECK;
+
}
- throughput.dump_results ("Aggregated", gsf);
+ marker.dump_stats ("Authenticate method ", gsf, 2);
+
+ ACE_CHECK;
+ // throughput.dump_results ("Aggregated", gsf);
}
ACE_CATCH (Test_Interceptors::Invalid, userex)
{
@@ -147,10 +148,11 @@ run_test (Test_Interceptors::Secure_Vault_ptr server,
if (TAO_debug_level > 0 && i % 100 == 0)
ACE_DEBUG ((LM_DEBUG, "(%P|%t) iteration = %d\n", i));
+ }
marker.dump_stats ("update records method ", gsf, 3);
ACE_CHECK;
- }
- throughput.dump_results ("Aggregated", gsf);
+
+ // throughput.dump_results ("Aggregated", gsf);
}