# HG changeset patch # User Pierre-Yves David # Date 2019-06-14 15:26:11 # Node ID 5ca351ba24788d7a74b9b2b4d35589ce87d48942 # Parent 35ef1e957a62093cf84f37f356cebe5c2c3335c9 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). diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1612,9 +1612,9 @@ class TTest(Test): 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 @@ class TTest(Test): 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)