Index: tools/run_swarm_tests_on_swarm.py |
diff --git a/tools/run_swarm_tests_on_swarm.py b/tools/run_swarm_tests_on_swarm.py |
index 4e3132fd84e0d46a9917dcb49b990bc78a2b68c2..fb73ea5c38cebc9034cde1745cf1929df8c406cf 100755 |
--- a/tools/run_swarm_tests_on_swarm.py |
+++ b/tools/run_swarm_tests_on_swarm.py |
@@ -140,7 +140,8 @@ class Runner(object): |
def run_swarm_tests_on_swarm(oses, tests, logs, isolate_server, swarm_server): |
runs = len(tests) * len(oses) |
total = 3 * runs |
- progress = threading_utils.Progress(total) |
+ columns = [('index', 0), ('size', total)] |
+ progress = threading_utils.Progress(columns) |
progress.use_cr_only = False |
tempdir = tempfile.mkdtemp(prefix='swarm_client_tests') |
try: |