summaryrefslogtreecommitdiffstats
path: root/dvm/2721/testcase
diff options
context:
space:
mode:
Diffstat (limited to 'dvm/2721/testcase')
-rwxr-xr-xdvm/2721/testcase22
1 files changed, 22 insertions, 0 deletions
diff --git a/dvm/2721/testcase b/dvm/2721/testcase
new file mode 100755
index 0000000..0339801
--- /dev/null
+++ b/dvm/2721/testcase
@@ -0,0 +1,22 @@
+#!/bin/bash
+
+source $cwd/regression_helpers
+
+$GLUSTERFSDIR/gluster volume create $global_bug_id $(hostname):$EXPORT_DIR/$global_bug_id/brick1 $(hostname):$EXPORT_DIR/$global_bug_id/brick2 2>/dev/null 1>/dev/null;
+
+$GLUSTERFSDIR/gluster volume start $global_bug_id 2>/dev/null 1>/dev/null;
+
+$GLUSTERFSDIR/gluster volume top $global_bug_id write-perf bs 46237546437865783 count 10 list-cnt 10 | grep "block size is an invalid number" 2>/dev/null 1>/dev/null;
+temp1=$?;
+
+$GLUSTERFSDIR/gluster volume top $global_bug_id write-perf bs 2048 count 9999999929743758437 | grep "count is an invalid number" 2>/dev/null 1>/dev/null;
+temp2=$?;
+
+$GLUSTERFSDIR/gluster volume top $global_bug_id write-perf bs 2048 list-cnt 10 | grep "Usage: volume top" 2>/dev/null 1>/dev/null ;
+temp3=$?;
+
+if [ $temp3 -eq 0 ] && [ $temp2 -eq 0 ] && [ $temp1 -eq 0 ];then
+ exit 0;
+else
+ exit 1;
+fi