diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-16 11:12:19 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-16 11:12:19 -0800 |
commit | 6c89ae35c5c658ac9ed95b56a9c0ac3442151e05 (patch) | |
tree | e8b4a79dcb25e5658e152923fe2175d0be59e7d6 /tests/runner.py | |
parent | 05ba65f644625cd1efd139cb8efddd5e4f9c4d75 (diff) |
use all cpu cores when building libraries in test runner
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 8a5e1129..37e307e9 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -328,7 +328,10 @@ process(sys.argv[1]) os.makedirs(ret) return ret - def get_library(self, name, generated_libs, configure=['sh', './configure'], configure_args=[], make=['make'], make_args=['-j', '2'], cache=True, env_init={}, cache_name_extra='', native=False): + def get_library(self, name, generated_libs, configure=['sh', './configure'], configure_args=[], make=['make'], make_args='help', cache=True, env_init={}, cache_name_extra='', native=False): + if make_args == 'help': + make_args = ['-j', str(multiprocessing.cpu_count())] + build_dir = self.get_build_dir() output_dir = self.get_dir() |