================
@@ -241,6 +276,18 @@ def run_clang_tidy(self) -> str:
diff_output = try_run(
["diff", "-u", self.original_file_name, self.temp_file_name], False
)
+ if self.check_headers:
+ for temp_header_path in self.check_header_map:
+ diff_output += try_run(
+ [
+ "diff",
+ "-u",
+ temp_header_path + ".orig",
+ temp_header_path,
----------------
zeyi2 wrote:
AFAIK `darker` CI may fail with this modification..
https://github.com/llvm/llvm-project/pull/175735
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits