diff tests/hghave.py @ 46177:0c320e6032f1

chg: format code by clang-format version 11.0.1-+rc1-1 test-check-clang-format.t started failing on my Debian sid environment, and new style looks slightly better. So let's bump the required clang-format version to 11.
author Yuya Nishihara <yuya@tcha.org>
date Sat, 19 Dec 2020 12:07:24 +0900
parents ebcc52046096
children 7149fb17ff72
line wrap: on
line diff
--- a/tests/hghave.py	Sat Dec 19 12:01:58 2020 +0900
+++ b/tests/hghave.py	Sat Dec 19 12:07:24 2020 +0900
@@ -594,8 +594,8 @@
 @check("clang-format", "clang-format C code formatter")
 def has_clang_format():
     m = matchoutput('clang-format --version', br'clang-format version (\d+)')
-    # style changed somewhere between 4.x and 6.x
-    return m and int(m.group(1)) >= 6
+    # style changed somewhere between 10.x and 11.x
+    return m and int(m.group(1)) >= 11
 
 
 @check("jshint", "JSHint static code analysis tool")