Re: [PATCH] t1304: improve setfacl prerequisite setup
From: Jeff King <hidden>
Date: 2016-06-15 22:54:00
On Wed, Jun 06, 2012 at 09:58:53AM -0700, Junio C Hamano wrote:
quoted
+test_expect_success 'checking for a working acl setup' ' + if setfacl -m d:m:rwx -m u:root:rwx . && + getfacl . | grep user:root:rwx && + touch should-have-readable-acl && + getfacl should-have-readable-acl | egrep "mask::?rw-"At this point of the test, I do not think there is anything that can cause this check to be fooled by a user whose name is 'mask', but please make it a habit to anchor the pattern at the left. The tests done in check_perms_and_acl do risk getting fooled by a user whose name is 'mask', and need to be updated, I think, but that is a separate issue.
I intentionally did not anchor it because the tests themselves did not, and I worried that that there was some subtle portability issue there (especially because of the magic "let there be two colons" part of the pattern). If it was just sloppiness in the original test, then yes, they should all be fixed. -Peff