aboutsummaryrefslogtreecommitdiff
path: root/crosperf/experiment.py
diff options
context:
space:
mode:
authorCaroline Tice <cmtice@google.com>2015-09-23 09:43:35 -0700
committerchrome-bot <chrome-bot@chromium.org>2015-09-25 19:36:38 -0700
commitddde50532281f7f796dd7dc44b562b29d25ab381 (patch)
tree2c4530e053ccd6f9bb84718f18e5d47a4f7d82c8 /crosperf/experiment.py
parentc4995a4466121d971d64d09110a4769ecc9fdacd (diff)
downloadtoolchain-utils-ddde50532281f7f796dd7dc44b562b29d25ab381.tar.gz
Add compiler info to experiment data.
Check the build label to see which compiler was used. Store the compiler in the label, and add it to the json filename and output. Also update nightly buildbot script to add 'compiler' field to labels. BUG=None TEST=Tested in my directory. Change-Id: I124c4910cce1145708bb2a52e3a6d6dff93777c3 Reviewed-on: https://chrome-internal-review.googlesource.com/231811 Commit-Ready: Caroline Tice <cmtice@google.com> Tested-by: Caroline Tice <cmtice@google.com> Reviewed-by: Caroline Tice <cmtice@google.com>
Diffstat (limited to 'crosperf/experiment.py')
-rw-r--r--crosperf/experiment.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/crosperf/experiment.py b/crosperf/experiment.py
index e18556a1..f9f8fb51 100644
--- a/crosperf/experiment.py
+++ b/crosperf/experiment.py
@@ -92,10 +92,10 @@ class Experiment(object):
self._internal_counter_lock = Lock()
def set_schedv2(self, schedv2):
- self._schedv2 = schedv2
+ self._schedv2 = schedv2
def schedv2(self):
- return self._schedv2
+ return self._schedv2
def _GenerateBenchmarkRuns(self):
"""Generate benchmark runs from labels and benchmark defintions."""