diff options
Diffstat (limited to 'clang-tools-extra/clang-tidy/add_new_check.py')
-rwxr-xr-x | clang-tools-extra/clang-tidy/add_new_check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/clang-tidy/add_new_check.py b/clang-tools-extra/clang-tidy/add_new_check.py index 654f77bde31..3d566ef2b5d 100755 --- a/clang-tools-extra/clang-tidy/add_new_check.py +++ b/clang-tools-extra/clang-tidy/add_new_check.py @@ -193,7 +193,7 @@ def write_test(module_path, module, check_name): print('Creating %s...' % filename) with open(filename, 'wb') as f: f.write( -"""// RUN: %%python %%S/check_clang_tidy.py %%s %(check_name_dashes)s %%t +"""// RUN: %%check_clang_tidy %%s %(check_name_dashes)s %%t // FIXME: Add something that triggers the check here. void f(); |