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

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: 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..89d81804a1de5476ce1eb6c9fd4705792be20686 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.append('--loops 1') # Don't care about performance on Valgrind.
borenet 2014/08/07 20:18:54 Should be: args.extend(['--loops', '1'])
mtklein 2014/08/07 20:20:42 Done.
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