[clang-tools-extra] r344016 - [clang-tidy][docs] Update docs for `--check-suffixes`

Zinovy Nis via cfe-commits cfe-commits at lists.llvm.org
Mon Oct 8 22:48:57 PDT 2018


Author: zinovy.nis
Date: Mon Oct  8 22:48:57 2018
New Revision: 344016

URL: http://llvm.org/viewvc/llvm-project?rev=344016&view=rev
Log:
[clang-tidy][docs] Update docs for `--check-suffixes`

Differential Revision: https://reviews.llvm.org/D52971

Modified:
    clang-tools-extra/trunk/docs/clang-tidy/index.rst

Modified: clang-tools-extra/trunk/docs/clang-tidy/index.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/index.rst?rev=344016&r1=344015&r2=344016&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/index.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/index.rst Mon Oct  8 22:48:57 2018
@@ -680,9 +680,10 @@ source code is at `test/clang-tidy/googl
     // CHECK-FIXES: int b = a;
   }
 
-To check more than one scenario in the same test file use 
-``-check-suffix=SUFFIX-NAME`` on ``check_clang_tidy.py`` command line.
-With ``-check-suffix=SUFFIX-NAME`` you need to replace your ``CHECK-*`` 
+To check more than one scenario in the same test file use
+``-check-suffix=SUFFIX-NAME`` on ``check_clang_tidy.py`` command line or
+``-check-suffixes=SUFFIX-NAME-1,SUFFIX-NAME-2,...``.
+With ``-check-suffix[es]=SUFFIX-NAME`` you need to replace your ``CHECK-*``
 directives with ``CHECK-MESSAGES-SUFFIX-NAME`` and ``CHECK-FIXES-SUFFIX-NAME``.
 
 Here's an example:




More information about the cfe-commits mailing list