aboutsummaryrefslogtreecommitdiff
path: root/buildbot_test_llvm.py
diff options
context:
space:
mode:
authorCaroline Tice <cmtice@google.com>2018-05-24 15:44:12 -0700
committerchrome-bot <chrome-bot@chromium.org>2018-05-25 20:32:12 -0700
commit372e1642e413f6d3f0047c852db95b90f76d7e6d (patch)
tree28c3da4c20db6e150fe38e93b2eb78dc438a34dc /buildbot_test_llvm.py
parente2a920a2de9c03553db50be9484ca802d0a80dae (diff)
downloadtoolchain-utils-372e1642e413f6d3f0047c852db95b90f76d7e6d.tar.gz
toolchain_utils: Use external chrome source tree for telemetry.
When generating the nightly performance tests, specify an external Chrome source tree, since Chrome sync'ing is broken inside Chrome OS. Also remove unnecessary code that references a file that no longer exists. BUG=chromium:846508 TEST=Successfully ran nightly tests with these changes on Chrotomation2. Change-Id: I1cba94f82ad6ffb39c941a5dc3cb8f95cb833d20 Reviewed-on: https://chromium-review.googlesource.com/1072870 Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com> Tested-by: Caroline Tice <cmtice@chromium.org> Reviewed-by: Manoj Gupta <manojgupta@chromium.org>
Diffstat (limited to 'buildbot_test_llvm.py')
-rwxr-xr-xbuildbot_test_llvm.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/buildbot_test_llvm.py b/buildbot_test_llvm.py
index 5b9e6944..111068c6 100755
--- a/buildbot_test_llvm.py
+++ b/buildbot_test_llvm.py
@@ -109,16 +109,6 @@ class ToolchainVerifier(object):
self._weekday = weekday
self._reports = os.path.join(VALIDATION_RESULT_DIR, compiler, board)
- def _FinishSetup(self):
- """Make sure testing_rsa file is properly set up."""
- # Fix protections on ssh key
- command = ('chmod 600 /var/cache/chromeos-cache/distfiles/target'
- '/chrome-src-internal/src/third_party/chromite/ssh_keys'
- '/testing_rsa')
- ret_val = self._ce.ChrootRunCommand(self._chromeos_root, command)
- if ret_val != 0:
- raise RuntimeError('chmod for testing_rsa failed')
-
def DoAll(self):
"""Main function inside ToolchainComparator class.