Fixed formatting of timeout argument.

This commit is contained in:
Alan Jeffrey 2016-08-19 13:50:21 -05:00
parent 900518ae55
commit 08d15e9466

View file

@ -239,7 +239,7 @@ def main():
testcases = load_manifest(args.tp5_manifest)
results = []
for testcase in testcases:
command = (["timeout", "{timeout}s".format(args.timeout)] +
command = (["timeout", "{}s".format(args.timeout)] +
command_factory(testcase))
for run in range(args.runs):
print("Running test {}/{} on {}".format(run + 1,