summaryrefslogtreecommitdiffstats
path: root/dvm/2742/testcase
blob: 800924e65cca84ffb6965ea443c6251ecbfc2bf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

source $cwd/regression_helpers

VOLNAME="vol$global_bug_id";

LINE=`$GLUSTERFSDIR/gluster volume create help | grep '<tcp|rdma|tcp,rdma>' | wc -l`

if [ "$LINE" -eq "1" ]; then
    RET="0";
else
    RET="1";
fi

exit $RET;