summaryrefslogtreecommitdiffstats
path: root/dvm/1535
diff options
context:
space:
mode:
authorRaghavendra Bhat <raghavendrabhat@gluster.com>2011-09-06 19:43:11 +0530
committerRaghavendra Bhat <raghavendrabhat@gluster.com>2011-09-06 19:43:11 +0530
commit8904b7e4958f886afc48108504bd558703930b48 (patch)
tree7c38efd9f9ebb0024a1019b931f51fd0b9498f40 /dvm/1535
parentb1f10e01c5db3cba20144e43ad9d68b5e22b02d2 (diff)
some changes in the regression framework and testcases for some bugs
Diffstat (limited to 'dvm/1535')
-rwxr-xr-xdvm/1535/testcase16
1 files changed, 16 insertions, 0 deletions
diff --git a/dvm/1535/testcase b/dvm/1535/testcase
new file mode 100755
index 0000000..d799749
--- /dev/null
+++ b/dvm/1535/testcase
@@ -0,0 +1,16 @@
+#!/bin/bash
+source $cwd/regression_helpers
+
+VOLNAME="vol$global_bug_id";
+
+$GLUSTERFSDIR/gluster volume create $VOLNAME $(hostname):$EXPORT_DIR/$global_bug_id/export1 $(hostname):$EXPORT_DIR/$global_bug_id/export2 2>/dev/null 1>/dev/null;
+
+VOLTYPE=`$GLUSTERFSDIR/gluster volume info $VOLNAME | grep Type | cut -d ' ' -f2`
+
+if [ "$VOLTYPE" == "Distribute" ]; then
+ RET="0";
+else
+ RET="1";
+fi
+
+exit $RET;