From 685b13aa35299ea3dd041256dae025ffbe17a2e2 Mon Sep 17 00:00:00 2001 From: Eitan Adler Date: Sat, 17 Mar 2018 01:27:54 +0000 Subject: [PATCH] MFC r326959: arc lint: ignore /tests/ in chmod shell scripts in scripts don't need to be chmod +x to work. In fact most are not. Of the tests I found from a simple search: 65 are chmod +x 84 are chmod -x simply disable the check for test shell scripts. --- .arclint | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.arclint b/.arclint index 31bda09b1a83..5078cba32c37 100644 --- a/.arclint +++ b/.arclint @@ -9,7 +9,8 @@ "type": "spelling" }, "chmod": { - "type": "chmod" + "type": "chmod", + "exclude": "(/tests/)" }, "merge-conflict": { "type": "merge-conflict"