aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/run_tests.py
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2017-10-17 11:54:49 -0700
committerGravatar ncteisen <ncteisen@gmail.com>2017-10-17 11:54:49 -0700
commit1f062ad9eca854bfcdc8f4bc156eaa2cdb436d86 (patch)
tree579e82a1110c4cfc4929a858fa7fdaff34e7c7c8 /tools/run_tests/run_tests.py
parentd392c7d8d1700093609d3a8a2234fbab8ee4737f (diff)
Standardize shortname
Diffstat (limited to 'tools/run_tests/run_tests.py')
-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 4c4deb4860..4c3db14fed 100755
--- a/tools/run_tests/run_tests.py
+++ b/tools/run_tests/run_tests.py
@@ -345,7 +345,7 @@ class CLanguage(object):
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),
+ shortname='%s %s' % (' '.join(cmdline), shortname_ext),
cpu_cost=cpu_cost,
timeout_seconds=_DEFAULT_TIMEOUT_SECONDS * timeout_scaling,
environ=env))