svn commit: r331081 - stable/11

Eitan Adler eadler at FreeBSD.org
Sat Mar 17 01:27:56 UTC 2018


Author: eadler
Date: Sat Mar 17 01:27:54 2018
New Revision: 331081
URL: https://svnweb.freebsd.org/changeset/base/331081

Log:
  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.

Modified:
  stable/11/.arclint
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/.arclint
==============================================================================
--- stable/11/.arclint	Fri Mar 16 23:39:49 2018	(r331080)
+++ stable/11/.arclint	Sat Mar 17 01:27:54 2018	(r331081)
@@ -9,7 +9,8 @@
       "type": "spelling"
     },
     "chmod": {
-      "type": "chmod"
+      "type": "chmod",
+      "exclude": "(/tests/)"
     },
     "merge-conflict": {
       "type": "merge-conflict"


More information about the svn-src-all mailing list