| Index: tools/sharding_supervisor/sharding_supervisor.py
|
| diff --git a/tools/sharding_supervisor/sharding_supervisor.py b/tools/sharding_supervisor/sharding_supervisor.py
|
| index fc2bd1bf01c5fa46c73886d4307dc6ae5f9b5a32..2c4bd606dfff4ff93af21a2dc522aa393c11a026 100755
|
| --- a/tools/sharding_supervisor/sharding_supervisor.py
|
| +++ b/tools/sharding_supervisor/sharding_supervisor.py
|
| @@ -17,7 +17,6 @@ is started for that shard and the output is identical to gtest's output.
|
| from cStringIO import StringIO
|
| import optparse
|
| import os
|
| -import pty
|
| import Queue
|
| import random
|
| import re
|
| @@ -26,7 +25,7 @@ import sys
|
| import threading
|
|
|
|
|
| -SS_USAGE = "Usage: python %prog [options] path/to/test [gtest_args]"
|
| +SS_USAGE = "python %prog [options] path/to/test [gtest_args]"
|
| SS_DEFAULT_NUM_CORES = 4
|
| SS_DEFAULT_SHARDS_PER_CORE = 5 # num_shards = cores * SHARDS_PER_CORE
|
| SS_DEFAULT_RUNS_PER_CORE = 1 # num_workers = cores * RUNS_PER_CORE
|
|
|