Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(713)

Unified Diff: slave/skia_slave_scripts/run_nanobench.py

Issue 452493005: --runOnce -> --loops 1 (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: separate args Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: slave/skia_slave_scripts/run_nanobench.py
diff --git a/slave/skia_slave_scripts/run_nanobench.py b/slave/skia_slave_scripts/run_nanobench.py
index 57446659cd22a6145416be5dff8c5ed3a8bc9d4b..13f5de43e3e1ef62a23d9472d60e9a070dc95571 100644
--- a/slave/skia_slave_scripts/run_nanobench.py
+++ b/slave/skia_slave_scripts/run_nanobench.py
@@ -60,7 +60,7 @@ class RunNanobench(BuildStep):
'--skps', self._device_dirs.SKPDir(),
'--scales', '1.0', '1.1']
if self._AnyMatch('Valgrind'):
- args.append('--runOnce') # Don't care about performance on Valgrind.
+ args.extend(['--loops', '1']) # Don't care about performance on Valgrind.
elif self._perf_data_dir:
args.extend([
'--outResultsFile', self._JSONPath(),
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698