aboutsummaryrefslogtreecommitdiff
path: root/crosperf/experiment_runner.py
diff options
context:
space:
mode:
authorCaroline Tice <cmtice@google.com>2015-09-08 09:57:37 -0700
committerchrome-bot <chrome-bot@chromium.org>2015-09-08 15:23:32 -0700
commitc87cb38b44bdaba67d1415386fcc7ff6a97e3365 (patch)
tree380ad3cf5c67b593d3a7a94c39f9a0743a355ff7 /crosperf/experiment_runner.py
parentf97c6a214a4e6a0fcffdcba7609f3f07c8e40282 (diff)
downloadtoolchain-utils-c87cb38b44bdaba67d1415386fcc7ff6a97e3365.tar.gz
Fix bug: Add missing argument to function call.
cache.Init() takes an extra argument now. This function call was overlooked when the function was updated. This CL adds the appropriate missing argument. BUG=None TEST=Tested in my directory. Change-Id: I6b87843a296fad539477576536267e481e57cc88 Reviewed-on: https://chrome-internal-review.googlesource.com/229391 Commit-Ready: Caroline Tice <cmtice@google.com> Tested-by: Caroline Tice <cmtice@google.com> Reviewed-by: Yunlian Jiang <yunlian@google.com> Reviewed-by: Han Shen <shenhan@google.com>
Diffstat (limited to 'crosperf/experiment_runner.py')
-rw-r--r--crosperf/experiment_runner.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/crosperf/experiment_runner.py b/crosperf/experiment_runner.py
index 8ced8ccd..73e9fe38 100644
--- a/crosperf/experiment_runner.py
+++ b/crosperf/experiment_runner.py
@@ -134,9 +134,9 @@ class ExperimentRunner(object):
cache = ResultsCache()
cache.Init (br.label.chromeos_image, br.label.chromeos_root,
br.benchmark.test_name, br.iteration, br.test_args,
- br.profiler_args, br.machine_manager, br.label.board,
- br.cache_conditions, br._logger, br.log_level, br.label,
- br.share_cache, br.benchmark.suite,
+ br.profiler_args, br.machine_manager, br.machine,
+ br.label.board, br.cache_conditions, br._logger, br.log_level,
+ br.label, br.share_cache, br.benchmark.suite,
br.benchmark.show_all_results, br.benchmark.run_local)
cache_dir = cache._GetCacheDirForWrite()
self.l.LogOutput("Removing cache dir: %s" % cache_dir)