diff options
author | Rahul C S <rahulcs@redhat.com> | 2012-02-17 17:23:28 +0530 |
---|---|---|
committer | Rahul C S <rahulcs@redhat.com> | 2012-02-17 17:24:19 +0530 |
commit | db468693ef5faa294d9bc3cd3c5d70c0d99d488b (patch) | |
tree | f552d0a8e88304dba5038eac670a5c7afe3c267e /perf-framework/setbatch | |
parent | 01a77a1ae18d9add01f893e06e58191b065602e8 (diff) |
Adding the performance framework to the qa repo
Change-Id: Ia7dbd82e9bb2e5e65e9345234ce34f8518a091ad
Signed-off-by: Rahul C S <rahulcs@redhat.com>
Diffstat (limited to 'perf-framework/setbatch')
-rwxr-xr-x | perf-framework/setbatch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/perf-framework/setbatch b/perf-framework/setbatch new file mode 100755 index 0000000..fb18585 --- /dev/null +++ b/perf-framework/setbatch @@ -0,0 +1,25 @@ +#!/bin/bash -u + +TARBALL_DIR=./tarballs +function usage() +{ + echo "Usage : $0 <gluster_release_tarball_list>" + exit 1 +} + +if [ $# -lt 1 ] +then + usage +fi + +list=`echo $@` +for i in $list +do + if [ ! -f $TARBALL_DIR/$i ] + then + echo "$i not found in directory $TARBALL_DIR. Provide correct list." + exit + fi +done + +sed -i "s/^RUNLIST=.*$/RUNLIST=\"$list\"/" batchrun |