aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-01-26 08:44:00 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-01-27 13:07:24 -0800
commite68de0e4c91fa9281082193d9bffbe9319e6aecc (patch)
treec60fcaa8ac4d745ae16f051e2ae3ae248e841271 /tools
parent79d9a990ff89fd12821a2c88631e194c8da4342d (diff)
Small tweaks
Run faster on smaller machines. Don't watch '.' prefixed files for changes. These files don't typically contribute to builds, and are used as vim temp files.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/run_tests/run_tests.py4
-rwxr-xr-xtools/run_tests/watch_dirs.py1
2 files changed, 3 insertions, 2 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index b7248e524b..a699399c27 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -19,7 +19,7 @@ class SimpleConfig(object):
def __init__(self, config):
self.build_config = config
- self.maxjobs = 32 * multiprocessing.cpu_count()
+ self.maxjobs = 2 * multiprocessing.cpu_count()
self.allow_hashing = (config != 'gcov')
def run_command(self, binary):
@@ -32,7 +32,7 @@ class ValgrindConfig(object):
def __init__(self, config, tool):
self.build_config = config
self.tool = tool
- self.maxjobs = 4 * multiprocessing.cpu_count()
+ self.maxjobs = 2 * multiprocessing.cpu_count()
self.allow_hashing = False
def run_command(self, binary):
diff --git a/tools/run_tests/watch_dirs.py b/tools/run_tests/watch_dirs.py
index 9ef6924454..f83192e5f8 100755
--- a/tools/run_tests/watch_dirs.py
+++ b/tools/run_tests/watch_dirs.py
@@ -25,6 +25,7 @@ class DirWatcher(object):
continue
for root, _, files in os.walk(path):
for f in files:
+ if f and f[0] == '.': continue
try:
st = os.stat(os.path.join(root, f))
except OSError as e: