aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2017-10-17 10:10:40 -0700
committerGravatar ncteisen <ncteisen@gmail.com>2017-10-17 10:10:40 -0700
commitd392c7d8d1700093609d3a8a2234fbab8ee4737f (patch)
treeb5ece0f9e63250d824d08dcad55e9f62177d0a8a /tools/run_tests
parent4345ea686465b8048ddabeac5470a319c6db6188 (diff)
Remove full benchmark run since we split it out now
Diffstat (limited to 'tools/run_tests')
-rwxr-xr-xtools/run_tests/run_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py
index 588784353a..4c4deb4860 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -340,9 +340,9 @@ class CLanguage(object):
with open(os.devnull, 'w') as fnull:
tests = subprocess.check_output([binary, '--benchmark_list_tests'],
stderr=fnull)
- base = None
for line in tests.split('\n'):
test = line.strip()
+ if not test: continue
cmdline = [binary, '--benchmark_filter=%s$' % test] + target['args']
out.append(self.config.job_spec(cmdline,
shortname='%s:%s %s' % (binary, test, shortname_ext),