summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/EC_Multiple/gen_data
blob: 11617d1d0626a993f5868bb85ce56febbee010a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
#
# $Id$
#

./latency.pl -k LOCAL -r 100 EC1.log EC2.log >local.log
tail +3 local.log | sort -n > local.data
./latency.pl -k REMOTE -r 1000 EC1.log EC2.log >remote.log
tail +3 remote.log | sort -n > remote.data

gnuplot <<_EOF_
set grid xtics ytics
set terminal pbm color
set output "local.pbm"
plot 'local.data' w i
set terminal x11
plot 'local.data' w i
pause 5

set terminal pbm color
set output "remote.pbm"
plot 'remote.data' w i
set terminal x11
plot 'remote.data' w i
pause 5

_EOF_