zephyr/tests/lib/gui/lvgl/testcase.yaml
Bartosz Golaszewski 0f09360456 lvgl: change the prefix of Zephyr-specific LVGL config options
We're now using the Kconfig copied from the upstream lvgl repository. It
uses the LV_ prefix for all options while we're using LVGL_ for
Zephyr-specific ones. Make the latter consistent with upstream but also
make sure they're distinct from lvgl's by using LV_Z_ as the prefix.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@huawei.com>
2022-02-24 11:51:33 +01:00

42 lines
1.2 KiB
YAML

tests:
libraries.gui.lvgl:
tags: display gui
platform_allow: native_posix_64
libraries.gui.lvgl.dynamic.heap.libc:
filter: TOOLCHAIN_HAS_NEWLIB == 1
tags: display gui
platform_allow: native_posix_64
extra_configs:
- CONFIG_NEWLIB_LIBC=y
- CONFIG_LV_Z_BUFFER_ALLOC_DYNAMIC=y
- CONFIG_LV_Z_MEM_POOL_HEAP_LIB_C=y
libraries.gui.lvgl.dynamic.pool.sys_heap:
tags: display gui
platform_allow: native_posix_64
extra_configs:
- CONFIG_LV_Z_BUFFER_ALLOC_DYNAMIC=y
- CONFIG_LV_Z_MEM_POOL_SYS_HEAP=y
- CONFIG_LV_Z_MEM_POOL_NUMBER_BLOCKS=3
- CONFIG_LV_Z_MEM_POOL_MAX_SIZE=32768
libraries.gui.lvgl.16bit:
tags: display gui
platform_allow: native_posix_64
extra_configs:
- CONFIG_LV_COLOR_DEPTH_16=y
libraries.gui.lvgl.8bit:
tags: display gui
platform_allow: native_posix_64
extra_configs:
- CONFIG_LV_COLOR_DEPTH_8=y
libraries.gui.lvgl.mono:
tags: display gui
platform_allow: native_posix_64
extra_configs:
- CONFIG_LV_COLOR_DEPTH_1=y
libraries.gui.lvgl.16bit.swap:
tags: display gui
platform_allow: native_posix_64
extra_configs:
- CONFIG_LV_COLOR_DEPTH_16=y
- CONFIG_LV_COLOR_16_SWAP=y