Lines Matching refs:chromeos_root
54 def GetBuildID(self, chromeos_root, xbuddy_label): argument
59 _, build_id_tuple_str, _ = self._ce.ChrootRunCommandWOutput(chromeos_root,
69 def DownloadImage(self, chromeos_root, build_id, image_name): argument
75 download_path = os.path.join(chromeos_root, 'chroot/tmp', build_id)
83 gsutil_cmd = os.path.join(chromeos_root, GS_UTIL)
96 def UncompressImage(self, chromeos_root, build_id): argument
99 os.path.join(chromeos_root, 'chroot/tmp', build_id,
104 download_path = os.path.join(chromeos_root, 'chroot/tmp', build_id)
135 def DownloadSingleAutotestFile(self, chromeos_root, build_id, argument
141 gsutil_cmd = os.path.join(chromeos_root, GS_UTIL)
154 download_path = os.path.join(chromeos_root, 'chroot/tmp', build_id)
170 def UncompressSingleAutotestFile(self, chromeos_root, build_id, argument
173 download_path = os.path.join(chromeos_root, 'chroot/tmp', build_id)
193 def VerifyAutotestFilesExist(self, chromeos_root, build_id, package_file): argument
198 gsutil_cmd = os.path.join(chromeos_root, GS_UTIL)
210 def DownloadAutotestFiles(self, chromeos_root, build_id): argument
216 download_path = os.path.join(chromeos_root, 'chroot/tmp', build_id)
220 autotest_path = os.path.join(chromeos_root, 'chroot/tmp', build_id,
226 status = self.VerifyAutotestFilesExist(chromeos_root, build_id,
236 self.DownloadSingleAutotestFile(chromeos_root, build_id,
238 self.DownloadSingleAutotestFile(chromeos_root, build_id,
240 self.DownloadSingleAutotestFile(chromeos_root, build_id,
243 self.UncompressSingleAutotestFile(chromeos_root, build_id,
245 self.UncompressSingleAutotestFile(chromeos_root, build_id,
248 self.UncompressSingleAutotestFile(chromeos_root, build_id,
262 def Run(self, chromeos_root, xbuddy_label, autotest_path): argument
263 build_id = self.GetBuildID(chromeos_root, xbuddy_label)
271 gsutil_cmd = os.path.join(chromeos_root, GS_UTIL)
277 image_path = self.DownloadImage(chromeos_root, build_id, image_name)
278 self.UncompressImage(chromeos_root, build_id)
284 autotest_path = self.DownloadAutotestFiles(chromeos_root, build_id)