From c115828fdda56f78fc7cf8ed078ab5d23bbb4b4b Mon Sep 17 00:00:00 2001 From: Vijay Bellur Date: Sun, 1 Nov 2009 23:25:08 +0530 Subject: Make regression testcases not bound to any specific machine/environment. --- regression_testcase_sample | 47 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 41 deletions(-) (limited to 'regression_testcase_sample') diff --git a/regression_testcase_sample b/regression_testcase_sample index 2ede804..864d8fd 100644 --- a/regression_testcase_sample +++ b/regression_testcase_sample @@ -1,49 +1,14 @@ #!/bin/bash -bugid=$(pwd | cut -d '/' -f 4) +source ../../init +start_glusterfs -description="#( $bugid ) description of the bug from bugzilla" -comments="#any comment about the bug" +#testcase starts here -version=$1 +#This is my testcase +#testcase ends here -mountdir=/mnt/regr/$bugid/$version - -function ok () { - desc=$@ - echo "ok - $desc" -} - -function not_ok () { - desc=$@ - echo "not ok - $desc" -} - - -function comment () { - desc=$@ - echo "$desc" -} - -[ $# -ne 1 ] && { - not_ok "#" - exit -} - -/opt/qa/regr/setup $version $bugid - -#testcase here - -sleep 5 - -if [ $(mount | grep "$mountdir/client1" | wc -l) -ne 0 ];then - not_ok $description - comment $comments -else - ok $description -fi - -/opt/qa/regr/cleanup $version $bugid +cleanup_glusterfs -- cgit