summaryrefslogtreecommitdiff
path: root/bin/topinfo_iorsize_stats.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/topinfo_iorsize_stats.sh')
-rwxr-xr-xbin/topinfo_iorsize_stats.sh78
1 files changed, 0 insertions, 78 deletions
diff --git a/bin/topinfo_iorsize_stats.sh b/bin/topinfo_iorsize_stats.sh
deleted file mode 100755
index 86088779c0b..00000000000
--- a/bin/topinfo_iorsize_stats.sh
+++ /dev/null
@@ -1,78 +0,0 @@
-#!/bin/sh
-#
-# $Id$
-#
-
-if [ $# -lt 4 ]; then
- echo "Usage: $0 [ROOT] [DEST] [USER] [OPTIMIZED]"
- exit 0
-fi
-
-ROOT=$1
-DEST=$2
-US=$3
-OPT=$4
-
-DATE=`date +%Y/%m/%d-%H:%M`
-cd $ROOT
-ACE_ROOT=$ROOT
-export ACE_ROOT
-LD_LIBRARY_PATH=$ACE_ROOT/ace
-export LD_LIBRARY_PATH
-PATH=/usr/bin:/bin:$PATH
-export PATH
-cd TAO/performance-tests/Memory/IORsize
-
-# start the server. If OPT == 1 then start the optimized version, else
-# the non-optimized version
-
-if test $OPT == 1
- then ./server -ORBSvcConf server.conf &
- else ./server &
-fi
-
-s_id=$!;
-
-server_start_size=`cat /proc/$s_id/status | grep VmRSS | awk '{print $2}'`;
-
-# Just sleep for 2 seconds.
-sleep 2;
-# Check whether the server has started
-file="test.ior"
-if test -f $file
- then
- # start the client
- ./client &
- c_id=$!;
- # Wait till all the invocations are done
- sleep 30;
- # Get the size once the client has made sufficient invocations.
- s_invocations=`cat /proc/$s_id/status | grep VmRSS | awk '{print $2}'`;
- let "actual_server_growth=${s_invocations}-${server_start_size}";
- if test $OPT == 1
- then
- echo $DATE $s_invocations >> $DEST/source/server_opt_ior_size.txt
- echo $DATE $actual_server_growth >> $DEST/source/opt_ior_size.txt
- else
- echo $DATE $s_invocations >> $DEST/source/server_ior_size.txt
- echo $DATE $actual_server_growth >> $DEST/source/actual_ior_size.txt
- fi
-
- # Kill the server and client. We will look at better ways of doing
- # this later.
- kill -9 $c_id;
- kill -9 $s_id;
- rm -f $file
-else
- echo $file doesnt exist
-fi
-
-
-cd $DEST/source
-STRING="for 50000 IORs"
-FILES="server_opt opt server actual"
-for i in $FILES ; do
-/usr/bin/tac ${i}_ior_size.txt > $DEST/data/${i}_ior_size.txt
-/usr/bin/tail -5 ${i}_ior_size.txt > $DEST/data/LAST_${i}_ior_size.txt
-$ROOT/bin/generate_topinfo_charts.sh ${i}_ior_size.txt $DEST/images/${i}_ior_size.png ${i}_ior_size.txt
-done