Remove Sandybridge boards which are deprecated
Replace some old special configs with more modern devices.
BUG=None
TEST=./bin/cros_run_unit_tests --board=$BOARD --packages chromite
Change-Id: I170b2bd42cbeaf7ec8c86b41ce9046e87ee58da6
Reviewed-on: https://chromium-review.googlesource.com/929863
Commit-Ready: Bernie Thompson <bhthompson@chromium.org>
Tested-by: Bernie Thompson <bhthompson@chromium.org>
Reviewed-by: Bernie Thompson <bhthompson@chromium.org>
diff --git a/scripts/deploy_chrome_unittest.py b/scripts/deploy_chrome_unittest.py
index 7a8f82c..7f16218 100644
--- a/scripts/deploy_chrome_unittest.py
+++ b/scripts/deploy_chrome_unittest.py
@@ -35,7 +35,7 @@
class InterfaceTest(cros_test_lib.OutputTestCase):
"""Tests the commandline interface of the script."""
- BOARD = 'lumpy'
+ BOARD = 'eve'
def testGsLocalPathUnSpecified(self):
"""Test no chrome path specified."""
@@ -92,7 +92,7 @@
def testSshIdentityOptionSetsOption(self):
argv = list(_REGULAR_TO) + ['--private-key', '/foo/bar/key',
'--board', 'cedar',
- '--build-dir', '/path/to/nowhere' ]
+ '--build-dir', '/path/to/nowhere']
options = _ParseCommandLine(argv)
self.assertEqual(options.private_key, '/foo/bar/key')
@@ -232,7 +232,7 @@
self.staging_dir = os.path.join(self.tempdir, 'staging')
self.build_dir = os.path.join(self.tempdir, 'build_dir')
self.common_flags = ['--build-dir', self.build_dir,
- '--board=lumpy', '--staging-only', '--cache-dir',
+ '--board=eve', '--staging-only', '--cache-dir',
self.tempdir]
self.sdk_mock = self.StartPatcher(cros_chrome_sdk_unittest.SDKFetcherMock())
self.PatchObject(
@@ -276,7 +276,7 @@
self.deploy_mock = self.StartPatcher(DeployChromeMock())
self.deploy = self._GetDeployChrome(
list(_REGULAR_TO) + ['--build-dir', self.build_dir,
- '--board=lumpy', '--staging-only', '--cache-dir',
+ '--board=eve', '--staging-only', '--cache-dir',
self.tempdir, '--sloppy'])
def getCopyPath(self, source_path):