]> granicus.if.org Git - llvm/commitdiff
[UpdateTestChecks] Fix an incorrect %s added in r368006
authorFangrui Song <maskray@google.com>
Tue, 6 Aug 2019 09:44:18 +0000 (09:44 +0000)
committerFangrui Song <maskray@google.com>
Tue, 6 Aug 2019 09:44:18 +0000 (09:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@368007 91177308-0d34-0410-b5e6-96231b3b80d8

utils/update_test_checks.py

index b73e481ecd171350fa1de32ebb5423288a3fd00e..0783a6500faf9e0e24e801db83a3abc5e8fa0e6b 100755 (executable)
@@ -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]