diff --git a/clang-tools-extra/test/clang-tidy/check_clang_tidy.py b/clang-tools-extra/test/clang-tidy/check_clang_tidy.py --- a/clang-tools-extra/test/clang-tidy/check_clang_tidy.py +++ b/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())