From 1589f2ccdd4063f15b7edb425b8bb9c9759f6bb4 Mon Sep 17 00:00:00 2001 From: Genaro Saucedo Tejada Date: Tue, 13 Dec 2016 16:53:10 -0600 Subject: [PATCH] sanity: filter the build-all test for ethernet Ethernet build-all test was not being filtered base on RAM size so build step LINK was failing with "region `RAM' overflowed by 192 bytes" error when running daily sanitycheck. Added filter so this test is not attempted for boards with smaller RAM such as quark_d2000_crb, which was causing daily build failure Change-Id: I4ed3bef4f1c78e83890331db34fb1f2b2b066414 Signed-off-by: Genaro Saucedo Tejada --- tests/drivers/build_all/testcase.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/drivers/build_all/testcase.ini b/tests/drivers/build_all/testcase.ini index 58c9ca985af..4d7a3096745 100644 --- a/tests/drivers/build_all/testcase.ini +++ b/tests/drivers/build_all/testcase.ini @@ -30,3 +30,4 @@ filter = not ((CONFIG_DEBUG or CONFIG_ASSERT)) and ( CONFIG_SRAM_SIZE >= 32 build_only = true tags = drivers footprint extra_args = CONF_FILE=ethernet.conf +filter = CONFIG_SRAM_SIZE >= 32 or CONFIG_DCCM_SIZE >= 32 or CONFIG_RAM_SIZE >= 32 \ No newline at end of file