tests: fix various test identifiers

lib -> libraries to be consistent with everything else.
And fix identifier for a few stray tests that were wrongly
labeled/tagged.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2023-02-02 10:45:01 +00:00 committed by Carles Cufí
commit 0bc4fd4cb9
14 changed files with 32 additions and 32 deletions

View file

@ -10,28 +10,28 @@ tests:
drivers.spi.loopback: {} drivers.spi.loopback: {}
drivers.spi.loopback.internal: drivers.spi.loopback.internal:
filter: CONFIG_SPI_LOOPBACK_MODE_LOOP filter: CONFIG_SPI_LOOPBACK_MODE_LOOP
drivers.mcux_dspi_dma.loopback: drivers.spi.mcux_dspi_dma.loopback:
extra_args: OVERLAY_CONFIG="overlay-mcux-dspi-dma.conf" extra_args: OVERLAY_CONFIG="overlay-mcux-dspi-dma.conf"
DTC_OVERLAY_FILE="overlay-mcux-dspi-dma.overlay" DTC_OVERLAY_FILE="overlay-mcux-dspi-dma.overlay"
platform_allow: frdm_k64f platform_allow: frdm_k64f
drivers.sam_spi_dma.loopback: drivers.spi.sam_spi_dma.loopback:
extra_args: OVERLAY_CONFIG="overlay-sam-spi-dma.conf" extra_args: OVERLAY_CONFIG="overlay-sam-spi-dma.conf"
DTC_OVERLAY_FILE="overlay-sam-spi-dma.overlay" DTC_OVERLAY_FILE="overlay-sam-spi-dma.overlay"
platform_allow: sam_e70_xplained sam_v71_xult tdk_robokit1 platform_allow: sam_e70_xplained sam_v71_xult tdk_robokit1
integration_platforms: integration_platforms:
- sam_e70_xplained - sam_e70_xplained
drivers.stm32_spi_dma.loopback: drivers.spi.stm32_spi_dma.loopback:
extra_args: OVERLAY_CONFIG="overlay-stm32-spi-dma.conf" extra_args: OVERLAY_CONFIG="overlay-stm32-spi-dma.conf"
filter: CONFIG_SOC_FAMILY_STM32 filter: CONFIG_SOC_FAMILY_STM32
platform_allow: nucleo_g474re nucleo_f207zg nucleo_f429zi nucleo_f746zg nucleo_wb55rg platform_allow: nucleo_g474re nucleo_f207zg nucleo_f429zi nucleo_f746zg nucleo_wb55rg
nucleo_l152re nucleo_wl55jc nucleo_h743zi nucleo_l152re nucleo_wl55jc nucleo_h743zi
integration_platforms: integration_platforms:
- nucleo_g474re - nucleo_g474re
drivers.gd32_spi_interrupt.loopback: drivers.spi.gd32_spi_interrupt.loopback:
extra_args: OVERLAY_CONFIG="overlay-gd32-spi-interrupt.conf" extra_args: OVERLAY_CONFIG="overlay-gd32-spi-interrupt.conf"
platform_allow: gd32f403z_eval gd32f407v_start gd32f450i_eval gd32f450v_start platform_allow: gd32f403z_eval gd32f407v_start gd32f450i_eval gd32f450v_start
gd32f450z_eval gd32f470i_eval gd32vf103c_starter gd32vf103v_eval longan_nano longan_nano_lite gd32f450z_eval gd32f470i_eval gd32vf103c_starter gd32vf103v_eval longan_nano longan_nano_lite
drivers.gd32_spi_dma.loopback: drivers.spi.gd32_spi_dma.loopback:
extra_args: OVERLAY_CONFIG="overlay-gd32-spi-dma.conf" extra_args: OVERLAY_CONFIG="overlay-gd32-spi-dma.conf"
platform_allow: gd32f403z_eval gd32f407v_start gd32f450i_eval gd32f450v_start platform_allow: gd32f403z_eval gd32f407v_start gd32f450i_eval gd32f450v_start
gd32f450z_eval gd32f470i_eval gd32vf103c_starter gd32vf103v_eval longan_nano longan_nano_lite gd32f450z_eval gd32f470i_eval gd32vf103c_starter gd32vf103v_eval longan_nano longan_nano_lite

View file

@ -4,7 +4,7 @@ common:
tests: tests:
libraries.libc: libraries.libc:
ignore_faults: true ignore_faults: true
libraries.picolibc: libraries.libc.picolibc:
filter: CONFIG_PICOLIBC_SUPPORTED filter: CONFIG_PICOLIBC_SUPPORTED
tags: picolibc tags: picolibc
ignore_faults: true ignore_faults: true

View file

@ -7,7 +7,7 @@ common:
- qemu_x86_64 - qemu_x86_64
filter: CONFIG_CONSOLE_HAS_DRIVER filter: CONFIG_CONSOLE_HAS_DRIVER
tests: tests:
lib.cbprintf_fp.printk: libraries.cbprintf_fp.printk:
extra_configs: extra_configs:
- CONFIG_APP_FORMATTER_PRINTK=y - CONFIG_APP_FORMATTER_PRINTK=y
harness_config: harness_config:
@ -16,7 +16,7 @@ tests:
regex: regex:
- "Hello with printk" - "Hello with printk"
- "Complete" - "Complete"
lib.cbprintf_fp.printf: libraries.cbprintf_fp.printf:
extra_configs: extra_configs:
- CONFIG_APP_FORMATTER_PRINTF=y - CONFIG_APP_FORMATTER_PRINTF=y
harness_config: harness_config:
@ -25,7 +25,7 @@ tests:
regex: regex:
- "Hello with printf" - "Hello with printf"
- "Complete" - "Complete"
lib.cbprintf_fp.printf_nl: libraries.cbprintf_fp.printf_nl:
filter: TOOLCHAIN_HAS_NEWLIB == 1 filter: TOOLCHAIN_HAS_NEWLIB == 1
extra_configs: extra_configs:
- CONFIG_APP_FORMATTER_PRINTF=y - CONFIG_APP_FORMATTER_PRINTF=y
@ -36,7 +36,7 @@ tests:
regex: regex:
- "Hello with printf/newlib" - "Hello with printf/newlib"
- "Complete" - "Complete"
lib.cbprintf_fp.printfcb: libraries.cbprintf_fp.printfcb:
extra_configs: extra_configs:
- CONFIG_APP_FORMATTER_PRINTFCB=y - CONFIG_APP_FORMATTER_PRINTFCB=y
harness_config: harness_config:
@ -45,7 +45,7 @@ tests:
regex: regex:
- "Hello with printfcb" - "Hello with printfcb"
- "Complete" - "Complete"
lib.cbprintf_fp.printfcb_nl: libraries.cbprintf_fp.printfcb_nl:
filter: TOOLCHAIN_HAS_NEWLIB == 1 filter: TOOLCHAIN_HAS_NEWLIB == 1
extra_configs: extra_configs:
- CONFIG_APP_FORMATTER_PRINTFCB=y - CONFIG_APP_FORMATTER_PRINTFCB=y
@ -56,7 +56,7 @@ tests:
regex: regex:
- "Hello with printfcb/newlib" - "Hello with printfcb/newlib"
- "Complete" - "Complete"
lib.cbprintf_fp.fprintf: libraries.cbprintf_fp.fprintf:
extra_configs: extra_configs:
- CONFIG_APP_FORMATTER_FPRINTF=y - CONFIG_APP_FORMATTER_FPRINTF=y
harness_config: harness_config:
@ -65,7 +65,7 @@ tests:
regex: regex:
- "Hello with fprintf" - "Hello with fprintf"
- "Complete" - "Complete"
lib.cbprintf_fp.fprintfcb: libraries.cbprintf_fp.fprintfcb:
extra_configs: extra_configs:
- CONFIG_APP_FORMATTER_FPRINTFCB=y - CONFIG_APP_FORMATTER_FPRINTFCB=y
harness_config: harness_config:
@ -74,7 +74,7 @@ tests:
regex: regex:
- "Hello with fprintfcb" - "Hello with fprintfcb"
- "Complete" - "Complete"
lib.cbprintf_fp.printf.picolibc: libraries.cbprintf_fp.printf.picolibc:
filter: CONFIG_PICOLIBC_SUPPORTED filter: CONFIG_PICOLIBC_SUPPORTED
tags: picolibc tags: picolibc
extra_configs: extra_configs:
@ -86,7 +86,7 @@ tests:
regex: regex:
- "Hello with printf" - "Hello with printf"
- "Complete" - "Complete"
lib.cbprintf_fp.printfcb.picolibc: libraries.cbprintf_fp.printfcb.picolibc:
filter: CONFIG_PICOLIBC_SUPPORTED filter: CONFIG_PICOLIBC_SUPPORTED
tags: picolibc tags: picolibc
extra_configs: extra_configs:

View file

@ -6,7 +6,7 @@
# Excludes qemu_xtensa due to pathological runtimes which cannot be # Excludes qemu_xtensa due to pathological runtimes which cannot be
# reproduced on real hardware. # reproduced on real hardware.
tests: tests:
lib.heap: libraries.heap:
tags: heap tags: heap
platform_exclude: m2gl025_miv qemu_xtensa esp32s2_saola platform_exclude: m2gl025_miv qemu_xtensa esp32s2_saola
filter: not CONFIG_SOC_NSIM filter: not CONFIG_SOC_NSIM

View file

@ -1,3 +1,3 @@
tests: tests:
lib.heap_align: libraries.heap_align:
tags: heap heap_align tags: heap heap_align

View file

@ -1,3 +1,3 @@
tests: tests:
lib.mem_blocks: libraries.mem_blocks:
tags: heap mem_blocks tags: heap mem_blocks

View file

@ -1,3 +1,3 @@
tests: tests:
lib.mem_blocks.stats: libraries.mem_blocks.stats:
tags: heap mem_blocks.stats tags: heap mem_blocks.stats

View file

@ -1,5 +1,5 @@
tests: tests:
lib.mpsc_pbuf: libraries.mpsc_pbuf:
tags: mpsc_pbuf tags: mpsc_pbuf
platform_allow: > platform_allow: >
qemu_arc_em qemu_arc_hs qemu_cortex_a53 qemu_cortex_m0 qemu_cortex_m3 qemu_arc_em qemu_arc_hs qemu_cortex_a53 qemu_cortex_m0 qemu_cortex_m3
@ -8,7 +8,7 @@ tests:
integration_platforms: integration_platforms:
- native_posix - native_posix
lib.mpsc_pbuf_concurrent: libraries.mpsc_pbuf_concurrent:
tags: mpsc_pbuf tags: mpsc_pbuf
platform_allow: > platform_allow: >
qemu_cortex_m3 qemu_x86 qemu_x86_64 qemu_cortex_m3 qemu_x86 qemu_x86_64

View file

@ -1,3 +1,3 @@
tests: tests:
lib.p4wq: libraries.p4wq:
tags: p4wq tags: p4wq

View file

@ -27,12 +27,12 @@ tests:
tags: libc tags: libc
testcases: testcases:
- EOF - EOF
libraries.picolibc.sprintf: libraries.libc.picolibc.sprintf:
extra_args: CONF_FILE=prj_picolibc.conf extra_args: CONF_FILE=prj_picolibc.conf
tags: libc picolibc tags: libc picolibc
ignore_faults: true ignore_faults: true
filter: CONFIG_PICOLIBC_SUPPORTED filter: CONFIG_PICOLIBC_SUPPORTED
libraries.picolibc.sprintf_new: libraries.libc.picolibc.sprintf_new:
extra_args: CONF_FILE=prj_picolibc_new.conf extra_args: CONF_FILE=prj_picolibc_new.conf
tags: libc picolibc tags: libc picolibc
filter: CONFIG_PICOLIBC_SUPPORTED filter: CONFIG_PICOLIBC_SUPPORTED

View file

@ -1,12 +1,12 @@
tests: tests:
lib.spsc_pbuf: libraries.spsc_pbuf:
integration_platforms: integration_platforms:
- native_posix - native_posix
# Exclude platform which does not link with cache functions # Exclude platform which does not link with cache functions
platform_exclude: ast1030_evb platform_exclude: ast1030_evb
timeout: 120 timeout: 120
lib.spsc_pbuf_cache: libraries.spsc_pbuf_cache:
integration_platforms: integration_platforms:
- native_posix - native_posix
# Exclude platform which does not link with cache functions # Exclude platform which does not link with cache functions
@ -15,7 +15,7 @@ tests:
extra_configs: extra_configs:
- CONFIG_SPSC_PBUF_CACHE_ALWAYS=y - CONFIG_SPSC_PBUF_CACHE_ALWAYS=y
lib.spsc_pbuf_nocache: libraries.spsc_pbuf_nocache:
integration_platforms: integration_platforms:
- native_posix - native_posix
# Exclude platform which does not link with cache functions # Exclude platform which does not link with cache functions
@ -24,7 +24,7 @@ tests:
extra_configs: extra_configs:
- CONFIG_SPSC_PBUF_CACHE_NEVER=y - CONFIG_SPSC_PBUF_CACHE_NEVER=y
lib.spsc_pbuf_utilization: libraries.spsc_pbuf_utilization:
integration_platforms: integration_platforms:
- native_posix - native_posix
# Exclude platform which does not link with cache functions # Exclude platform which does not link with cache functions
@ -33,7 +33,7 @@ tests:
extra_configs: extra_configs:
- CONFIG_SPSC_PBUF_UTILIZATION=y - CONFIG_SPSC_PBUF_UTILIZATION=y
lib.spsc_pbuf_stress: libraries.spsc_pbuf_stress:
platform_allow: qemu_x86 platform_allow: qemu_x86
timeout: 120 timeout: 120
extra_configs: extra_configs:

View file

@ -1,4 +1,4 @@
tests: tests:
lib.sys_util: libraries.sys_util:
platform_exclude: native_posix native_posix_64 platform_exclude: native_posix native_posix_64
tags: sys_util tags: sys_util

View file

@ -1,4 +1,4 @@
tests: tests:
pm-device-wakeup-api.dts: pm.device-wakeup-api.dts:
tags: pm tags: pm
platform_allow: native_posix platform_allow: native_posix

View file

@ -1,4 +1,4 @@
tests: tests:
utilities.dec: utilities.dec:
tags: lib_sys_util_tests tags: lib utilities
type: unit type: unit