Mercurial > hg-stable
changeset 42875:5ca351ba2478
run-tests: rename `lcmd` variable to `line_cmd`
This is clearer and more in line with some other variable names.
(This is a gratuitous cleanup that I made while investigating a bug).
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Fri, 14 Jun 2019 16:26:11 +0100 |
parents | 35ef1e957a62 |
children | 4257c33e24b7 |
files | tests/run-tests.py |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/run-tests.py Fri Jun 14 16:24:34 2019 +0100 +++ b/tests/run-tests.py Fri Jun 14 16:26:11 2019 +0100 @@ -1612,9 +1612,9 @@ pos = -1 postout = [] for out_rawline in output: - out_line, lcmd = out_rawline, None + out_line, cmd_line = out_rawline, None if salt in out_rawline: - out_line, lcmd = out_rawline.split(salt, 1) + out_line, cmd_line = out_rawline.split(salt, 1) while out_line: if not out_line.endswith(b'\n'): @@ -1695,15 +1695,15 @@ continue postout.append(b' ' + el) - if lcmd: + if cmd_line: # Add on last return code. - ret = int(lcmd.split()[1]) + ret = int(cmd_line.split()[1]) if ret != 0: postout.append(b' [%d]\n' % ret) if pos in after: # Merge in non-active test bits. postout += after.pop(pos) - pos = int(lcmd.split()[0]) + pos = int(cmd_line.split()[0]) if pos in after: postout += after.pop(pos)