From 9d36eca70a458c736e44fd8eb9184415ec45f1e6 Mon Sep 17 00:00:00 2001 From: Raghavendra Bhat Date: Wed, 25 Jan 2012 13:59:36 +0530 Subject: system_light: changes to have modularity in running tests Till now this script allowed running all the tools (or exit for the first failure). Running individual tools was not possible. Now individual tools can be given as an argument to run. Change-Id: Ia133943667ad4dc30956f4a021f2edfc30458cee Signed-off-by: Raghavendra Bhat --- sanity/system_light/run_nfs.sh | 101 ----------------------------------------- 1 file changed, 101 deletions(-) delete mode 100755 sanity/system_light/run_nfs.sh (limited to 'sanity/system_light/run_nfs.sh') diff --git a/sanity/system_light/run_nfs.sh b/sanity/system_light/run_nfs.sh deleted file mode 100755 index 94d8262..0000000 --- a/sanity/system_light/run_nfs.sh +++ /dev/null @@ -1,101 +0,0 @@ -#!/bin/sh - -ulimit -c unlimited -set +x -SCRIPTS_PATH="/opt/qa/tools/system_light/scripts" -CNT=0 -. /opt/qa/tools/system_light/config -echo " Changing to the specified mountpoint" -cd $THIS_TEST_DIR -pwd - -echo " This script runs the tools and scriprts which are used to test the performance.The tests are run on ther glusterFS mountpoint.They are: -1.dd -2.dbench -3.arequal -4.posix_compliance -5.kernel compile -6.fsx -7.ltp tests -8.fileop -9.bonnie -10.iozone -11.openssl build -12.postmark -13.ffsb -14.Reading from large file -15.Multiple file creation(100000) -16.glusterfs build"; - -sleep 1 - -echo "Executing ffsb" - set +x - cp $BIN_PATH/system_light/profile_everything $THIS_TEST_DIR/profile_everything - sed -i "s[/mnt/test1[$THIS_TEST_DIR[" profile_everything - $SCRIPTS_PATH/ffsb_test.sh -if [ $? -eq 0 ]; then - CNT=$((CNT+1)) - echo $CNT - echo "Removing data" - rm -rfv data && echo "Removed" - echo "Removing meta" - rm -rfv meta && echo "Removed" - echo "Removing profile_everything" - rm $FFSB_FILE && echo "Removed" -else - echo "ffsb failed" - echo $CNT -fi - -echo "Executing ltp tests" - set +x - mkdir ltp - cd ltp - $SCRIPTS_PATH/ltp_test.sh -if [ $? -eq 0 ]; then - CNT=$((CNT+1)) - echo $CNT - echo "Removing directory" - cd - - rm -rfv ltp && echo "removed" -else - echo "ltp failed" - echo $CNT -fi - -echo "Executing fileop" - set +x - $SCRIPTS_PATH/fileop_test.sh -if [ $? -eq 0 ]; then - CNT=$((CNT+1)) - echo $CNT -else - echo "fileop failed" - echo $CNT -fi - -echo "Kernel compiling" #Untars the given kernel file and compiles it - set +x - $SCRIPTS_PATH/kernel.sh -if [ $? -eq 0 ]; then - CNT=$((CNT+1)) - echo $CNT - echo "Removing linux-$VERSION.tar.bz2 and linux-$VERSION" - rm -r linux-$VERSION* && echo "removed" -else - echo "kernel compile failed" - echo $CNT -fi - -echo "Executing bonnie++" - set +x - $SCRIPTS_PATH/bonnie_test.sh -if [ $? -eq 0 ]; then - CNT=$((CNT+1)) - echo $CNT -else - echo "bonnie failed" - echo $CNT -fi - -- cgit