diff options
author | Krishna Srinivas <ksriniva@redhat.com> | 2012-09-12 12:36:49 +0530 |
---|---|---|
committer | Anand Avati <avati@redhat.com> | 2012-11-13 23:24:46 -0800 |
commit | 1c4cb5237701bb138f9cce29036773086253f839 (patch) | |
tree | cafdfacc71618962a235a1c25921a72764490c37 /tests | |
parent | ca666417f3e6f500ec75cb7389497e2f5c4bc6e6 (diff) |
ACLv3 - Access Control Lists V3
Change-Id: I43e544d6cdeac5e3880141477461e7c22cbf6e91
BUG: 847622
Signed-off-by: Krishna Srinivas <ksriniva@redhat.com>
Reviewed-on: http://review.gluster.org/4045
Reviewed-by: Kaleb KEITHLEY <kkeithle@redhat.com>
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@redhat.com>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/bugs/bug-847622.t | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/bugs/bug-847622.t b/tests/bugs/bug-847622.t new file mode 100755 index 00000000000..1384995271f --- /dev/null +++ b/tests/bugs/bug-847622.t @@ -0,0 +1,25 @@ +#!/bin/bash + +. $(dirname $0)/../include.rc + +cleanup; + +TEST glusterd +TEST pidof glusterd +TEST $CLI volume create $V0 $H0:$B0/brick0 +TEST $CLI volume start $V0 + +sleep 5 + +TEST mount -t nfs -o vers=3,nolock $H0:/$V0 $N0 +cd $N0 + +# simple getfacl setfacl commands +TEST touch testfile +TEST setfacl -m u:14:r testfile +TEST getfacl testfile + +cd +TEST umount $N0 +cleanup + |