================ @@ -245,15 +246,15 @@ def check_no_diagnosis(self, clang_tidy_output: str) -> None: def check_fixes(self) -> None: if self.has_check_fixes: - try_run( - [ - "FileCheck", - "-input-file=" + self.temp_file_name, - self.input_file_name, - "-check-prefixes=" + ",".join(self.fixes.prefixes), - "-strict-whitespace", - ] - ) + command = [ + "FileCheck", + "--input-file=" + self.temp_file_name, + self.input_file_name, + "--check-prefixes=" + ",".join(self.fixes.prefixes), + ] + if not self.match_partial_fixes: ---------------- carlosgalvezp wrote:
Shouldn't it still use `-strict-whitespace` to preserve the old behavior? https://github.com/llvm/llvm-project/pull/133756 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits