filter: exclude sensor tests from assert build
When running sanity with asserts turned on the following tests don't fit the ROM region of CONFIG_SOC_QUARK_D2000: - test_build_sensor_triggers - test_build_sensors Added filters prevent these test from being executed when asserts are on. Jira: ZEP-1063 Change-Id: Ib046bcb227f4a49b524894aa5aea80debe159aae Signed-off-by: Genaro Saucedo Tejada <genaro.saucedo.tejada@intel.com>
This commit is contained in:
parent
13b5d62625
commit
9cb925dc70
1 changed files with 2 additions and 2 deletions
|
@ -7,14 +7,14 @@ build_only = true
|
|||
tags = drivers footprint
|
||||
extra_args = CONF_FILE=sensors.conf
|
||||
#Do not run for debug daily build
|
||||
filter = not (CONFIG_DEBUG and CONFIG_SOC_QUARK_D2000)
|
||||
filter = not ((CONFIG_DEBUG or CONFIG_ASSERT) and CONFIG_SOC_QUARK_D2000)
|
||||
|
||||
[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 and CONFIG_SOC_QUARK_D2000)
|
||||
filter = not ((CONFIG_DEBUG or CONFIG_ASSERT) and CONFIG_SOC_QUARK_D2000)
|
||||
|
||||
[test_build_ethernet]
|
||||
build_only = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue