Whamcloud - gitweb
Revert "LU-4924 llite: Only kill SGID/SUID bits"
[fs/lustre-release.git] / lustre / tests / acl / 4924.test
diff --git a/lustre/tests/acl/4924.test b/lustre/tests/acl/4924.test
deleted file mode 100644 (file)
index 9b8a0c2..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-LU-4924 - chmod g+s, touch should not clear sgid bit
-
-       $ mkdir 4924
-       $ cd 4924
-       $ touch f
-       $ chmod u=rwx,g=rwxs f
-       $ ls -l f | awk -- '{ print $1, $3, $4 }'
-       > -rwxrwsr-- root root
-       $ touch f
-       $ ls -l f | awk -- '{ print $1, $3, $4 }'
-       > -rwxrwsr-- root root
-       $ cd ..
-       $ rm -rf 4924