summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2013-05-20 13:06:55 -0700
committerChromeBot <chrome-bot@google.com>2013-05-20 17:01:29 -0700
commit93ec62ebc3ae238749915f8161a2673a7d2928d9 (patch)
tree0f64111dc448e6c5d2d4d8dedfed775a9d4cc7b8 /test
parent9fb93c09d30d83a4aae778887faaed72da5675b0 (diff)
downloadchrome-ec-93ec62ebc3ae238749915f8161a2673a7d2928d9.tar.gz
Create board configuration for falco bringup
This change just copies slippy and tweaks a few things that were slippy-specific instead of not-link-specific (there are still bugs open for those things). BUG=chrome-os-partner:18788 BRANCH=none TEST=manual Since there are no Falco-specific changes yet (just slippy with another name), I can try it on Slippy: cros_workon --board falco start chromeos-ec emerge-falco chromeos-ec ~/trunk/src/platform/ec/util/flash_ec --board falco I also built and tested Link EC, to make sure nothing broke there either. Change-Id: I9b3682032bd51adab4450520dfe52e3036750ef9 Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/55820 Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'test')
-rw-r--r--test/build.mk1
-rw-r--r--test/stress.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/test/build.mk b/test/build.mk
index 3100f0df49..6a302a6b02 100644
--- a/test/build.mk
+++ b/test/build.mk
@@ -23,6 +23,7 @@ test-list-$(BOARD_spring)+=kb_scan flash stress
# TODO(victoryang): Fix them
test-list-$(BOARD_link)=
test-list-$(BOARD_slippy)=
+test-list-$(BOARD_falco)=
# Emulator tests
test-list-host=mutex pingpong utils kb_scan kb_mkbp lid_sw power_button hooks
diff --git a/test/stress.c b/test/stress.c
index e62212e69f..ce3e671147 100644
--- a/test/stress.c
+++ b/test/stress.c
@@ -49,7 +49,8 @@ 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_slippy) || \
+ defined(BOARD_falco)
#undef CONFIG_I2C
#endif