mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Fixed formatting of timeout argument.
This commit is contained in:
parent
900518ae55
commit
08d15e9466
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ def main():
|
||||||
testcases = load_manifest(args.tp5_manifest)
|
testcases = load_manifest(args.tp5_manifest)
|
||||||
results = []
|
results = []
|
||||||
for testcase in testcases:
|
for testcase in testcases:
|
||||||
command = (["timeout", "{timeout}s".format(args.timeout)] +
|
command = (["timeout", "{}s".format(args.timeout)] +
|
||||||
command_factory(testcase))
|
command_factory(testcase))
|
||||||
for run in range(args.runs):
|
for run in range(args.runs):
|
||||||
print("Running test {}/{} on {}".format(run + 1,
|
print("Running test {}/{} on {}".format(run + 1,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue