aboutsummaryrefslogtreecommitdiffstats
path: root/check
diff options
context:
space:
mode:
authorZorro Lang <zlang@redhat.com>2017-03-16 13:28:19 +0800
committerEryu Guan <eguan@redhat.com>2017-03-17 12:24:01 +0800
commit4cbc0a0fa8bcb45e9b0a98569bce8165e50a301d (patch)
treead2672a2b8ac7979cdc82b743cf0e4d603ffaf30 /check
parent516a24b9658677a530bd2638dbb94cc3194bf885 (diff)
downloadxfstests-dev-4cbc0a0fa8bcb45e9b0a98569bce8165e50a301d.tar.gz
fstests: add GlusterFS support
Add basic GlusterFS support. Neither new GlusterFS specific tests nor related patches are included. Only support FSTYP=glusterfs or check -glusterfs XXX. To test on glusterfs, two gluster volumes and two mountpoint directories are needed. Signed-off-by: Zorro Lang <zlang@redhat.com> Reviewed-by: Eryu Guan <eguan@redhat.com> Signed-off-by: Eryu Guan <eguan@redhat.com>
Diffstat (limited to 'check')
-rwxr-xr-xcheck2
1 files changed, 2 insertions, 0 deletions
diff --git a/check b/check
index c2c22e2386..2fcf385f90 100755
--- a/check
+++ b/check
@@ -65,6 +65,7 @@ usage()
check options
-nfs test NFS
+ -glusterfs test GlusterFS
-cifs test CIFS
-overlay test overlay
-tmpfs test TMPFS
@@ -260,6 +261,7 @@ while [ $# -gt 0 ]; do
-\? | -h | --help) usage ;;
-nfs) FSTYP=nfs ;;
+ -glusterfs) FSTYP=glusterfs ;;
-cifs) FSTYP=cifs ;;
-overlay) FSTYP=overlay; export OVERLAY=true ;;
-tmpfs) FSTYP=tmpfs ;;