From 7ce9334ad784547be27844f9f1811fdedbc1f76f Mon Sep 17 00:00:00 2001 From: Zinovy Nis Date: Tue, 9 Oct 2018 05:48:57 +0000 Subject: [PATCH] [clang-tidy][docs] Update docs for `--check-suffixes` Differential Revision: https://reviews.llvm.org/D52971 llvm-svn: 344016 --- clang-tools-extra/docs/clang-tidy/index.rst | 7 ++++--- 1 file 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 ab165d8c..06963ae 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: -- 2.7.4