diff options
author | Fangrui Song <maskray@google.com> | 2019-08-06 09:44:18 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2019-08-06 09:44:18 +0000 |
commit | 1eb84c4d063483218abcc8970548e9ac0cb691e1 (patch) | |
tree | d0db246c761abf8adb9ad277924cd1846050ce94 | |
parent | d24e6d7bf567802bc466f0324333bc2f143bbd9f (diff) | |
download | bcm5719-llvm-1eb84c4d063483218abcc8970548e9ac0cb691e1.tar.gz bcm5719-llvm-1eb84c4d063483218abcc8970548e9ac0cb691e1.zip |
[UpdateTestChecks] Fix an incorrect %s added in r368006
llvm-svn: 368007
-rwxr-xr-x | llvm/utils/update_test_checks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/utils/update_test_checks.py b/llvm/utils/update_test_checks.py index b73e481ecd1..0783a6500fa 100755 --- a/llvm/utils/update_test_checks.py +++ b/llvm/utils/update_test_checks.py @@ -84,7 +84,7 @@ def main(): for test in test_paths: if args.verbose: - print('Scanning for RUN lines in test file: %s' + test, file=sys.stderr) + print('Scanning for RUN lines in test file: ' + test, file=sys.stderr) with open(test) as f: input_lines = [l.rstrip() for l in f] |