diff options
-rwxr-xr-x | clang-tools-extra/test/clang-tidy/check_clang_tidy.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang-tools-extra/test/clang-tidy/check_clang_tidy.py b/clang-tools-extra/test/clang-tidy/check_clang_tidy.py index dadb84d5790..d8086b16eae 100755 --- a/clang-tools-extra/test/clang-tidy/check_clang_tidy.py +++ b/clang-tools-extra/test/clang-tidy/check_clang_tidy.py @@ -98,6 +98,9 @@ def main(): sys.exit('%s, %s or %s not found in the input' % (check_fixes_prefix, check_messages_prefix, check_notes_prefix) ) + if has_check_notes and has_check_messages: + sys.exit('Please use either CHECK-NOTES or CHECK-MESSAGES but not both') + # Remove the contents of the CHECK lines to avoid CHECKs matching on # themselves. We need to keep the comments to preserve line numbers while # avoiding empty lines which could potentially trigger formatting-related |