[PATCH] D87830: [clang-tidy][test] Allow empty checks in check_clang_tidy.py
Endre Fülöp via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Thu Sep 17 06:55:23 PDT 2020
gamesh411 created this revision.
Herald added subscribers: cfe-commits, martong, steakhal, Szelethus, dkrupp, xazax.hun, whisperity.
Herald added a project: clang.
gamesh411 requested review of this revision.
Currently there is no way to assert that a check does not produce warnings for a specific run. The CHECK-NOT directive can be used, but an empty file is always discarded by FileCheck. Extend the FileCheck invocation with '--allow-empty' to support this usecase.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D87830
Files:
clang-tools-extra/test/clang-tidy/check_clang_tidy.py
Index: clang-tools-extra/test/clang-tidy/check_clang_tidy.py
===================================================================
--- clang-tools-extra/test/clang-tidy/check_clang_tidy.py
+++ clang-tools-extra/test/clang-tidy/check_clang_tidy.py
@@ -167,7 +167,7 @@
subprocess.check_output(
['FileCheck', '-input-file=' + temp_file_name, input_file_name,
'-check-prefixes=' + ','.join(check_fixes_prefixes),
- '-strict-whitespace'],
+ '-strict-whitespace', '--allow-empty'],
stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
print('FileCheck failed:\n' + e.output.decode())
@@ -180,7 +180,7 @@
subprocess.check_output(
['FileCheck', '-input-file=' + messages_file, input_file_name,
'-check-prefixes=' + ','.join(check_messages_prefixes),
- '-implicit-check-not={{warning|error}}:'],
+ '-implicit-check-not={{warning|error}}:', '--allow-empty'],
stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
print('FileCheck failed:\n' + e.output.decode())
@@ -195,7 +195,7 @@
subprocess.check_output(
['FileCheck', '-input-file=' + notes_file, input_file_name,
'-check-prefixes=' + ','.join(check_notes_prefixes),
- '-implicit-check-not={{note|warning|error}}:'],
+ '-implicit-check-not={{note|warning|error}}:', '--allow-empty'],
stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
print('FileCheck failed:\n' + e.output.decode())
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D87830.292483.patch
Type: text/x-patch
Size: 1593 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20200917/bb42fb53/attachment-0001.bin>
More information about the cfe-commits
mailing list