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

source ./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;