tests: do not build sensors for system with < 32k {S}RAM

Change-Id: I9cc87da7c32d9ffde5dd8f3419fdedd4683d3f0d
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2016-10-30 16:45:09 -04:00 committed by Anas Nashif
commit 5d317a0eb5

View file

@ -6,22 +6,25 @@ tags = drivers footprint
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))
# 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))
# 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))
# 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