summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2013-11-19 13:51:11 -0800
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2013-11-21 22:21:56 +0000
commit34b94121c7095d29650c0d054c869eb2159eea8b (patch)
treef5127299fc0988a23dc3af1b1389771e6218c32e /test
parentf7dba327a2b352babbd9d6bc2f6dbd2b3c02efdd (diff)
downloadchrome-ec-34b94121c7095d29650c0d054c869eb2159eea8b.tar.gz
Remove bolt, daisy, kirby, puppy, slippy boards
These boards are unloved and unsupported. They'll never grow up to be laptops, and hardware is increasingly hard to come by. Comparable functionality is available in the other, more-loved boards. Removing these boards speeds up util/make_all.sh by 40%. (If you're not running that before every upload, you should be...) BUG=chrome-os-partner:24062 BRANCH=none TEST=build all remaining platforms and pass unit tests Change-Id: I4d8a49e4d52d7393471f1b1cbef059c8db4a4f77 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/177373
Diffstat (limited to 'test')
-rw-r--r--test/build.mk6
-rw-r--r--test/stress.c4
2 files changed, 3 insertions, 7 deletions
diff --git a/test/build.mk b/test/build.mk
index 1c98d63bdd..6c7ec33081 100644
--- a/test/build.mk
+++ b/test/build.mk
@@ -10,14 +10,12 @@ test-list-y=pingpong timer_calib timer_dos timer_jump mutex utils
#disable: powerdemo
test-list-$(BOARD_bds)+=
-test-list-$(BOARD_daisy)+=kb_scan stress
test-list-$(BOARD_pit)+=kb_scan stress
test-list-$(BOARD_snow)+=kb_scan stress
test-list-$(BOARD_spring)+=kb_scan stress
-# Bolt and Samus have board-specific chipset code, and the tests don't
-# compile with those. Disable them for now.
-test-list-$(BOARD_bolt)=
+# Samus has board-specific chipset code, and the tests don't
+# compile with it. Disable them for now.
test-list-$(BOARD_samus)=
# Emulator tests
diff --git a/test/stress.c b/test/stress.c
index d357c389c5..31e3677c95 100644
--- a/test/stress.c
+++ b/test/stress.c
@@ -35,8 +35,6 @@ struct i2c_test_param_t {
{8, 0, 0x60, 0x0, -1},
{8, 0, 0x60, 0x0, 0x40},
{8, 0, 0x4a, 0x1, -1},
-#elif defined(BOARD_daisy)
- {8, 1, 0x90, 0x19, -1},
#elif defined(BOARD_link)
{8, 0, 0x16, 0x8, -1},
{8, 0, 0x16, 0x9, -1},
@@ -48,7 +46,7 @@ struct i2c_test_param_t {
#endif
};
/* Disable I2C test for boards without test configuration */
-#if defined(BOARD_bds) || defined(BOARD_mccroskey) || defined(BOARD_slippy) || \
+#if defined(BOARD_bds) || defined(BOARD_mccroskey) || \
defined(BOARD_falco) || defined(BOARD_peppy) || defined(BOARD_wolf)
#undef CONFIG_I2C
#endif