[PATCH] D140300: [lit] Fix a few issues in relative_lines.py
Haojian Wu via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 19 10:58:03 PST 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG683451bce3d6: [lit] Fix a few issues in relative_lines.py (authored by hokein).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D140300/new/
https://reviews.llvm.org/D140300
Files:
llvm/utils/relative_lines.py
Index: llvm/utils/relative_lines.py
===================================================================
--- llvm/utils/relative_lines.py
+++ llvm/utils/relative_lines.py
@@ -68,23 +68,23 @@
print(f"{file}:{line}: target line {target} is farther than {args.near}", file=sys.stderr)
return capture
if target > line:
- delta = b('+' + str(target - line))
+ delta = '+' + str(target - line)
elif target < line:
- delta = b('-' + str(line - target))
+ delta = '-' + str(line - target)
else:
- delta = b''
+ delta = ''
prefix = contents[:offset].rsplit(b'\n')[-1]
is_lit = b'RUN' in prefix or b'DEFINE' in prefix
- text = b(('%(line{0})' if is_lit else '[[@LINE{0}]]').format(delta))
+ text = ('%(line{0})' if is_lit else '[[@LINE{0}]]').format(delta)
if args.verbose:
print(f"{file}:{line}: {0} ==> {text}")
- return text
+ return b(text)
def replace_match(m):
"""Text to replace a whole match, e.g. --at=42:3 => --at=%(line+2):3"""
line = 1 + contents[:m.start()].count(b'\n')
- result = ''
+ result = b''
pos = m.start()
for index, capture in enumerate(m.groups()):
index += 1 # re groups are conventionally 1-indexed
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D140300.484016.patch
Type: text/x-patch
Size: 1374 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221219/0c32c32c/attachment.bin>
More information about the llvm-commits
mailing list