summaryrefslogtreecommitdiff
path: root/bin/topinfo_stats.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/topinfo_stats.sh')
-rwxr-xr-xbin/topinfo_stats.sh74
1 files changed, 0 insertions, 74 deletions
diff --git a/bin/topinfo_stats.sh b/bin/topinfo_stats.sh
deleted file mode 100755
index 5e572f357b9..00000000000
--- a/bin/topinfo_stats.sh
+++ /dev/null
@@ -1,74 +0,0 @@
-#!/bin/sh
-#
-# $Id$
-#
-
-
-if [ $# -lt 3 ]; then
- echo "Usage: $0 [ROOT] [DEST] [USER]"
- exit 0
-fi
-
-ROOT=$1
-DEST=$2
-US=$3
-
-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:$PATH
-export PATH
-cd TAO/performance-tests/Memory/Single_Threaded
-# start the server
-./server &
-s_id=$!;
-# Just sleep for 2 seconds.
-sleep 2;
-# Check whether the server has started
-file="test.ior"
-if test -f $file
- then
- # Just get the size as soon the server is started, ie. the vanilla
- # server.
- s_up=`top -p $s_id -n 1 -b | grep $US| awk '{print $5}'`;
-
- # Write it a file
- echo $DATE $s_up >> $DEST/source/st_start_size.txt
- # start the client
- ./client &
- c_id=$!;
- # Wait till all the invocations are done
- sleep 10;
- # Get the size once the client has made sufficient invocations.
- s_invocations=`top -p $s_id -n 1 -b | grep $US| awk '{print $5}'`;
-
- echo $DATE $s_invocations >> $DEST/source/st_after_invoke_size.txt
-
- # Kill the server and client. We will look at better ways of doing
- # this later.
- kill -9 $c_id;
-
- # Just sleep for the server to release memory etc.
- sleep 5;
-
- # Get the size once the client is killed or crashed
- s_client_death=`top -p $s_id -n 1 -b | grep $US| awk '{print $5}'`;
- echo $DATE $s_client_death >> $DEST/source/st_after_peer_death_size.txt
- kill -9 $s_id;
- rm -f $file
-else
- echo $file doesnt exist
-fi
-
-
-cd $DEST/source
-STRING=""
-FILES="start after_invoke after_peer_death"
-for i in $FILES ; do
-/usr/bin/tac st_${i}_size.txt > $DEST/data/st_${i}_size.txt
-/usr/bin/tail -5 st_${i}_size.txt > $DEST/data/LAST_st_${i}_size.txt
-$ROOT/bin/generate_topinfo_charts.sh st_${i}_size.txt $DEST/images/st_${i}_size.png st_${i}_size.txt $STRING
-done