Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 17 Mar 2018 01:27:54 +0000 (UTC)
From:      Eitan Adler <eadler@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r331081 - stable/11
Message-ID:  <201803170127.w2H1RsmT072821@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803170127.w2H1RsmT072821>