summaryrefslogtreecommitdiffstats
path: root/regression_testcase_sample
blob: 2ede8049e38dad3778063e704c0ba23e36b2df55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash

bugid=$(pwd | cut -d '/' -f 4)

description="#( $bugid ) description of the bug from bugzilla"
comments="#any comment about the bug"

version=$1


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 "#<Usage: $(basename $0) <glusterfs_version>"
  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