summaryrefslogtreecommitdiffstats
path: root/dvm
diff options
context:
space:
mode:
Diffstat (limited to 'dvm')
-rwxr-xr-xdvm/2742/testcase15
1 files changed, 15 insertions, 0 deletions
diff --git a/dvm/2742/testcase b/dvm/2742/testcase
new file mode 100755
index 0000000..062c144
--- /dev/null
+++ b/dvm/2742/testcase
@@ -0,0 +1,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;