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:
Genaro Saucedo Tejada 2016-10-18 13:36:03 -05:00 committed by Anas Nashif
commit 9cb925dc70

View file

@ -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