aboutsummaryrefslogtreecommitdiff
path: root/test_toolchains.py
diff options
context:
space:
mode:
authorCaroline Tice <cmtice@chromium.org>2013-10-02 17:13:13 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2013-10-03 22:58:00 +0000
commitc35909e0e48898e81a70796d03ba0d2802bc209e (patch)
treeda15d11ff3cd3fcc53679b384cbd25b187d82e77 /test_toolchains.py
parent1b5a65e686812e3cab1d0b83dd7c9f59da1cf238 (diff)
downloadtoolchain-utils-c35909e0e48898e81a70796d03ba0d2802bc209e.tar.gz
Remove (at least temporarily) the --minilayout argument for checking out ChromeOS, so the nightly infrastructure tests can build.
BUG=None TEST=None Change-Id: I7a6c68142e0c9af106a047986a95a545ece6a094 Reviewed-on: https://chrome-internal-review.googlesource.com/145917 Reviewed-by: Yunlian Jiang <yunlian@google.com> Commit-Queue: Caroline Tice <cmtice@google.com> Tested-by: Caroline Tice <cmtice@google.com>
Diffstat (limited to 'test_toolchains.py')
-rw-r--r--test_toolchains.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/test_toolchains.py b/test_toolchains.py
index 702af56b..9a076353 100644
--- a/test_toolchains.py
+++ b/test_toolchains.py
@@ -77,15 +77,18 @@ class ChromeOSCheckout(object):
def _CheckoutChromeOS(self):
# TODO(asharif): Setup a fixed ChromeOS version (quarterly snapshot).
if not os.path.exists(self._chromeos_root):
+ #setup_chromeos_args = [setup_chromeos.__file__,
+ # "--dir=%s" % self._chromeos_root,
+ # "--minilayout"]
setup_chromeos_args = [setup_chromeos.__file__,
- "--dir=%s" % self._chromeos_root,
- "--minilayout"]
+ "--dir=%s" % self._chromeos_root]
if self._public:
setup_chromeos_args.append("--public")
ret = setup_chromeos.Main(setup_chromeos_args)
if ret:
raise Exception("Couldn't run setup_chromeos!")
+
def _BuildToolchain(self, config):
self._UnInstallToolchain()
self._SetupBoard({"USE": "git_gcc",