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:
parent
c9dcbe66dd
commit
5d317a0eb5
1 changed files with 9 additions and 6 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue