summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZinovy Nis <zinovy.nis@gmail.com>2018-10-09 05:48:57 +0000
committerZinovy Nis <zinovy.nis@gmail.com>2018-10-09 05:48:57 +0000
commit6c9b1e9dd8a6b894e470085e61c2e19762b44d8e (patch)
treeffbac91ecfc932d8dce659f3afe6530050ab3c15
parent65574eb153a59ec2f15f5e178eb8cb38cd18d8bc (diff)
Differential Revision: https://reviews.llvm.org/D52971
-rw-r--r--clang-tools-extra/docs/clang-tidy/index.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/clang-tools-extra/docs/clang-tidy/index.rst b/clang-tools-extra/docs/clang-tidy/index.rst
index ab165d8c5a7..06963ae5f5f 100644
--- a/clang-tools-extra/docs/clang-tidy/index.rst
+++ b/clang-tools-extra/docs/clang-tidy/index.rst
@@ -680,9 +680,10 @@ source code is at `test/clang-tidy/google-readability-casting.cpp`_):
// 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: