summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Cubit/TAO/MT_Cubit/summarize
diff options
context:
space:
mode:
authornaga <naga@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-16 01:07:06 +0000
committernaga <naga@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-16 01:07:06 +0000
commit554d1f949776f7c87222ab5e20c273ea0d2b1890 (patch)
tree250ebeb731c507dadd928ba9d169d3f3ea753c3a /TAO/performance-tests/Cubit/TAO/MT_Cubit/summarize
parent19676db52cf72306c130ea2240adbc1e5c9fd393 (diff)
downloadATCD-554d1f949776f7c87222ab5e20c273ea0d2b1890.tar.gz
Removed Naming service code from all the MT_Cubit files.
Diffstat (limited to 'TAO/performance-tests/Cubit/TAO/MT_Cubit/summarize')
-rwxr-xr-xTAO/performance-tests/Cubit/TAO/MT_Cubit/summarize10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/performance-tests/Cubit/TAO/MT_Cubit/summarize b/TAO/performance-tests/Cubit/TAO/MT_Cubit/summarize
index 1ebebb59d47..1aaa1c36a1e 100755
--- a/TAO/performance-tests/Cubit/TAO/MT_Cubit/summarize
+++ b/TAO/performance-tests/Cubit/TAO/MT_Cubit/summarize
@@ -37,16 +37,16 @@ foreach $total_threads (sort {$a <=> $b} @total_threads) {
die "$0: unable to open \"client-${total_threads}.log\"\n";
while (<FILE>) {
if (/^High priority client latency : ([\d\.]+).*jitter: ([\d\.]+)/) {
- $high_latency = $1 * 1000;
- $high_jitter = $2 * 1000;
+ $high_latency = $1 ;
+ $high_jitter = $2 ;
} elsif (/^Low priority client latency : ([\d\.]+).*jitter: ([\d\.]+)/) {
- $low_latency = $1 * 1000;
- $low_jitter = $2 * 1000;
+ $low_latency = $1 ;
+ $low_jitter = $2 ;
last;
}
}
close FILE;
- printf " %3d %8d %8d %8d %8d\n",
+ printf " %3d %8.3f %8.3f %8.3f %8.3f\n",
$total_threads - 1, $high_latency, $high_jitter, $low_latency, $low_jitter;
}