summaryrefslogtreecommitdiffstats
path: root/tests/basic/fops-sanity.t
diff options
context:
space:
mode:
authorPranith Kumar K <pkarampu@redhat.com>2014-04-09 08:43:45 +0530
committerVijay Bellur <vbellur@redhat.com>2014-06-12 03:45:52 -0700
commit254a5e484b01f946beff3f51f9ade38f4cdfe51b (patch)
tree89f6913e0cd58d589399e7cde4653d351c4c6604 /tests/basic/fops-sanity.t
parentf1705e2d338704806cbd90ec9d0d66c0b16cc2ef (diff)
tests: Add fops sanity
Original-Authors: MS Vishwanath and Sachidananda URS Change-Id: I7a76b74fc4de24a2d7ec5932ff2c47754abf0521 BUG: 1084422 Signed-off-by: Pranith Kumar K <pkarampu@redhat.com> Reviewed-on: http://review.gluster.org/7928 Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'tests/basic/fops-sanity.t')
-rwxr-xr-xtests/basic/fops-sanity.t27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/basic/fops-sanity.t b/tests/basic/fops-sanity.t
new file mode 100755
index 00000000000..8962f3a2fba
--- /dev/null
+++ b/tests/basic/fops-sanity.t
@@ -0,0 +1,27 @@
+#!/bin/bash
+
+. $(dirname $0)/../include.rc
+
+cleanup;
+
+TEST glusterd
+TEST pidof glusterd
+TEST $CLI volume info;
+
+TEST $CLI volume create $V0 $H0:$B0/brick1;
+EXPECT 'Created' volinfo_field $V0 'Status';
+
+TEST $CLI volume start $V0;
+EXPECT 'Started' volinfo_field $V0 'Status';
+
+#mount on a random dir
+TEST glusterfs --entry-timeout=3600 --attribute-timeout=3600 -s $H0 --volfile-id=$V0 $M0 --direct-io-mode=yes
+
+build_tester $(dirname $0)/fops-sanity.c
+
+TEST cp $(dirname $0)/fops-sanity $M0
+cd $M0
+TEST ./fops-sanity $V0
+cd -
+TEST rm -f $(dirname $0)/fops-sanity
+cleanup;