zephyr/tests/drivers/build_all/testcase.ini
Genaro Saucedo Tejada 1589f2ccdd 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 <genaro.saucedo.tejada@intel.com>
2016-12-14 17:25:10 +00:00

33 lines
1.1 KiB
INI

[test_build_drivers]
build_only = true
tags = drivers footprint
[test_build_sensors_a_m]
build_only = true
tags = drivers footprint
extra_args = CONF_FILE=sensors_a_m.conf
# Do not run for debug daily build
filter = not ((CONFIG_DEBUG or CONFIG_ASSERT)) and ( CONFIG_SRAM_SIZE >= 32
or CONFIG_DCCM_SIZE >= 32 or CONFIG_RAM_SIZE >= 32 )
[test_build_sensors_n_z]
build_only = true
tags = drivers footprint
extra_args = CONF_FILE=sensors_n_z.conf
# Do not run for debug daily build
filter = not ((CONFIG_DEBUG or CONFIG_ASSERT)) and ( CONFIG_SRAM_SIZE >= 32
or CONFIG_DCCM_SIZE >= 32 or CONFIG_RAM_SIZE >= 32 )
[test_build_sensor_triggers]
build_only = true
tags = drivers footprint
extra_args = CONF_FILE=sensors_trigger.conf
# Do not run for debug daily build
filter = not ((CONFIG_DEBUG or CONFIG_ASSERT)) and ( CONFIG_SRAM_SIZE >= 32
or CONFIG_DCCM_SIZE >= 32 or CONFIG_RAM_SIZE >= 32 )
[test_build_ethernet]
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