[polly] r244726 - Adjusted arc linter config for modern version of arcanist
Johannes Doerfert via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 12 02:01:16 PDT 2015
Author: jdoerfert
Date: Wed Aug 12 04:01:16 2015
New Revision: 244726
URL: http://llvm.org/viewvc/llvm-project?rev=244726&view=rev
Log:
Adjusted arc linter config for modern version of arcanist
Modified:
polly/trunk/.arcconfig
polly/trunk/.arclint
Modified: polly/trunk/.arcconfig
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/.arcconfig?rev=244726&r1=244725&r2=244726&view=diff
==============================================================================
--- polly/trunk/.arcconfig (original)
+++ polly/trunk/.arcconfig Wed Aug 12 04:01:16 2015
@@ -2,8 +2,6 @@
"project_id" : "polly",
"conduit_uri" : "http://reviews.llvm.org/",
"history.immutable" : true,
- "linter.scriptandregex.script": "sh -c './utils/check_format.sh \"$0\" 2> /dev/null || true'",
- "linter.scriptandregex.regex": "/^(OK:(?P<ignore>.+)|Error:) (?P<message>.+)$/m",
"load" : [
"utils/arcanist/LitTestEngine"
],
Modified: polly/trunk/.arclint
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/.arclint?rev=244726&r1=244725&r2=244726&view=diff
==============================================================================
--- polly/trunk/.arclint (original)
+++ polly/trunk/.arclint Wed Aug 12 04:01:16 2015
@@ -3,7 +3,9 @@
"format": {
"include": "(include/polly/.+\\.h$|lib/.+\\.cpp$)",
"exclude": "(lib/JSON/.*)",
- "type": "script-and-regex"
+ "type": "script-and-regex",
+ "script-and-regex.script": "sh -c './utils/check_format.sh \"$0\" 2> /dev/null || true'",
+ "script-and-regex.regex": "/^(OK:(?P<ignore>.+)|Error:) (?P<message>.+)$/m"
},
"chmod": {
"type": "chmod"
More information about the llvm-commits
mailing list