[llvm] r368007 - [UpdateTestChecks] Fix an incorrect %s added in r368006
Fangrui Song via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 6 02:44:18 PDT 2019
Author: maskray
Date: Tue Aug 6 02:44:18 2019
New Revision: 368007
URL: http://llvm.org/viewvc/llvm-project?rev=368007&view=rev
Log:
[UpdateTestChecks] Fix an incorrect %s added in r368006
Modified:
llvm/trunk/utils/update_test_checks.py
Modified: llvm/trunk/utils/update_test_checks.py
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/update_test_checks.py?rev=368007&r1=368006&r2=368007&view=diff
==============================================================================
--- llvm/trunk/utils/update_test_checks.py (original)
+++ llvm/trunk/utils/update_test_checks.py Tue Aug 6 02:44:18 2019
@@ -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]
More information about the llvm-commits
mailing list