aboutsummaryrefslogtreecommitdiff
path: root/buildbot_test_toolchains.py
diff options
context:
space:
mode:
authorCaroline Tice <cmtice@google.com>2019-08-02 11:09:25 -0700
committerCaroline Tice <cmtice@chromium.org>2019-08-04 03:47:32 +0000
commitad16df98e04ca5afeb51793a5a0eef71610df71a (patch)
treeaadb053549bd82426e0b80e807c8b09c42858801 /buildbot_test_toolchains.py
parentdb3e218f34a7c5eb2808ce40bdc051e269873b6a (diff)
downloadtoolchain-utils-ad16df98e04ca5afeb51793a5a0eef71610df71a.tar.gz
Fix path for crosperf experiment files.
The pathname used to be relative to the location of chromeos_root, but that stopped working when we moved chromeos_root and made it a symbolic link. This CL fixes the path, using the correct absolute path prefix (no symbolic links). BUG=chromium:990427 TEST=None Change-Id: I0c2bc452934c7609fdcbda8bb6ce65762ac9ca2b Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/toolchain-utils/+/1733648 Reviewed-by: Tiancong Wang <tcwang@google.com> Reviewed-by: Caroline Tice <cmtice@chromium.org> Tested-by: Caroline Tice <cmtice@chromium.org> Legacy-Commit-Queue: Commit Bot <commit-bot@chromium.org>
Diffstat (limited to 'buildbot_test_toolchains.py')
-rwxr-xr-xbuildbot_test_toolchains.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildbot_test_toolchains.py b/buildbot_test_toolchains.py
index aab31a82..22df8716 100755
--- a/buildbot_test_toolchains.py
+++ b/buildbot_test_toolchains.py
@@ -143,7 +143,7 @@ class ToolchainComparator(object):
Given the names of the trybot, vanilla and non-AFDO images, create the
appropriate crosperf experiment file and launch crosperf on it.
"""
- experiment_file_dir = os.path.join(self._chromeos_root, '..', self._weekday)
+ experiment_file_dir = os.path.join(CROSTC_ROOT, self._weekday)
experiment_file_name = '%s_toolchain_experiment.txt' % self._board
compiler_string = 'llvm'