aboutsummaryrefslogtreecommitdiff
path: root/crosperf/label.py
diff options
context:
space:
mode:
authorcmtice <cmtice@google.com>2014-04-27 22:28:42 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-04-29 03:10:50 +0000
commit226e3e08106dffd3086a7eee7007950a1d8ddfaf (patch)
tree56107d8bddb9cfac25c48ec978e00c0d2400bfcf /crosperf/label.py
parent4375f760cb471a09b410d4034028eb8e45b1ba24 (diff)
downloadtoolchain-utils-226e3e08106dffd3086a7eee7007950a1d8ddfaf.tar.gz
Fix small bugs with non-autotest Telemetry; other cleanups.
This CL fixes various small problems found during recent testing: - Force show_all_results to be true for 'pure' telemetry case (the results filtering needs the autotest results to work properly) - Fix bug that was inserting extra 'src' into Chrome src path sometimes - Since non-autotest Telemetry and non-Telemetry-Crosperf tests can't handle 'perf' make it a Fatal error to call them with perf args. - Add missing field to example experiment file. - Add status output messages to downlaod_images.py for non-verbose logging. BUG=None TEST=Tested all these fixes on multiple test runs. Change-Id: If8209356c695dc8b21f8627399a1cbd4a858df23 Reviewed-on: https://chrome-internal-review.googlesource.com/161759 Reviewed-by: Yunlian Jiang <yunlian@google.com> Commit-Queue: Caroline Tice <cmtice@google.com> Tested-by: Caroline Tice <cmtice@google.com>
Diffstat (limited to 'crosperf/label.py')
-rw-r--r--crosperf/label.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/crosperf/label.py b/crosperf/label.py
index 52f98cef..bbcf18ae 100644
--- a/crosperf/label.py
+++ b/crosperf/label.py
@@ -45,10 +45,10 @@ class Label(object):
self.chromeos_root = chromeos_root
if not chrome_src:
self.chrome_src = os.path.join(self.chromeos_root,
- ".cache/distfiles/target/chrome-src-internal/src")
+ ".cache/distfiles/target/chrome-src-internal")
if not os.path.exists(self.chrome_src):
self.chrome_src = os.path.join(self.chromeos_root,
- ".cache/distfiles/target/chrome-src/src")
+ ".cache/distfiles/target/chrome-src")
else:
chromeos_src = misc.CanonicalizePath(chrome_src)
if not chromeos_src: