sample/tests: replace DT_ define filters with dt_ functions

convert sample and test yaml filters that utilize a DT_ define to
instead use a dt_ function.  The intent is to remove the Kconfig
generated DT defines and just make directy queries into the device tree.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2019-10-25 12:01:22 -05:00 committed by Anas Nashif
commit 4cc91fdd00
17 changed files with 27 additions and 19 deletions

View file

@ -3,4 +3,4 @@ tests:
tags: drivers gpio
depends_on: gpio
harness: loopback # see documentation
filter: DT_ALIAS_GPIO_0_LABEL or DT_ALIAS_GPIO_1_LABEL
filter: dt_alias_exists("gpio-0") or dt_alias_exists("gpio-1")