Commit 0bc4fd4c authored by Anas Nashif's avatar Anas Nashif Committed by Carles Cufi
Browse files

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: default avatarAnas Nashif <anas.nashif@intel.com>
parent a2056678
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -10,28 +10,28 @@ tests:
  drivers.spi.loopback: {}
  drivers.spi.loopback.internal:
    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"
      DTC_OVERLAY_FILE="overlay-mcux-dspi-dma.overlay"
    platform_allow: frdm_k64f
  drivers.sam_spi_dma.loopback:
  drivers.spi.sam_spi_dma.loopback:
    extra_args: OVERLAY_CONFIG="overlay-sam-spi-dma.conf"
      DTC_OVERLAY_FILE="overlay-sam-spi-dma.overlay"
    platform_allow: sam_e70_xplained sam_v71_xult tdk_robokit1
    integration_platforms:
      - sam_e70_xplained
  drivers.stm32_spi_dma.loopback:
  drivers.spi.stm32_spi_dma.loopback:
    extra_args: OVERLAY_CONFIG="overlay-stm32-spi-dma.conf"
    filter: CONFIG_SOC_FAMILY_STM32
    platform_allow: nucleo_g474re nucleo_f207zg nucleo_f429zi nucleo_f746zg nucleo_wb55rg
        nucleo_l152re nucleo_wl55jc nucleo_h743zi
    integration_platforms:
      - nucleo_g474re
  drivers.gd32_spi_interrupt.loopback:
  drivers.spi.gd32_spi_interrupt.loopback:
    extra_args: OVERLAY_CONFIG="overlay-gd32-spi-interrupt.conf"
    platform_allow: gd32f403z_eval gd32f407v_start gd32f450i_eval gd32f450v_start
      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"
    platform_allow: gd32f403z_eval gd32f407v_start gd32f450i_eval gd32f450v_start
      gd32f450z_eval gd32f470i_eval gd32vf103c_starter gd32vf103v_eval longan_nano longan_nano_lite
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ common:
tests:
  libraries.libc:
    ignore_faults: true
  libraries.picolibc:
  libraries.libc.picolibc:
    filter: CONFIG_PICOLIBC_SUPPORTED
    tags: picolibc
    ignore_faults: true
+9 −9
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ common:
    - qemu_x86_64
  filter: CONFIG_CONSOLE_HAS_DRIVER
tests:
  lib.cbprintf_fp.printk:
  libraries.cbprintf_fp.printk:
    extra_configs:
      - CONFIG_APP_FORMATTER_PRINTK=y
    harness_config:
@@ -16,7 +16,7 @@ tests:
      regex:
        - "Hello with printk"
        - "Complete"
  lib.cbprintf_fp.printf:
  libraries.cbprintf_fp.printf:
    extra_configs:
      - CONFIG_APP_FORMATTER_PRINTF=y
    harness_config:
@@ -25,7 +25,7 @@ tests:
      regex:
        - "Hello with printf"
        - "Complete"
  lib.cbprintf_fp.printf_nl:
  libraries.cbprintf_fp.printf_nl:
    filter: TOOLCHAIN_HAS_NEWLIB == 1
    extra_configs:
      - CONFIG_APP_FORMATTER_PRINTF=y
@@ -36,7 +36,7 @@ tests:
      regex:
        - "Hello with printf/newlib"
        - "Complete"
  lib.cbprintf_fp.printfcb:
  libraries.cbprintf_fp.printfcb:
    extra_configs:
      - CONFIG_APP_FORMATTER_PRINTFCB=y
    harness_config:
@@ -45,7 +45,7 @@ tests:
      regex:
        - "Hello with printfcb"
        - "Complete"
  lib.cbprintf_fp.printfcb_nl:
  libraries.cbprintf_fp.printfcb_nl:
    filter: TOOLCHAIN_HAS_NEWLIB == 1
    extra_configs:
      - CONFIG_APP_FORMATTER_PRINTFCB=y
@@ -56,7 +56,7 @@ tests:
      regex:
        - "Hello with printfcb/newlib"
        - "Complete"
  lib.cbprintf_fp.fprintf:
  libraries.cbprintf_fp.fprintf:
    extra_configs:
      - CONFIG_APP_FORMATTER_FPRINTF=y
    harness_config:
@@ -65,7 +65,7 @@ tests:
      regex:
        - "Hello with fprintf"
        - "Complete"
  lib.cbprintf_fp.fprintfcb:
  libraries.cbprintf_fp.fprintfcb:
    extra_configs:
      - CONFIG_APP_FORMATTER_FPRINTFCB=y
    harness_config:
@@ -74,7 +74,7 @@ tests:
      regex:
        - "Hello with fprintfcb"
        - "Complete"
  lib.cbprintf_fp.printf.picolibc:
  libraries.cbprintf_fp.printf.picolibc:
    filter: CONFIG_PICOLIBC_SUPPORTED
    tags: picolibc
    extra_configs:
@@ -86,7 +86,7 @@ tests:
      regex:
        - "Hello with printf"
        - "Complete"
  lib.cbprintf_fp.printfcb.picolibc:
  libraries.cbprintf_fp.printfcb.picolibc:
    filter: CONFIG_PICOLIBC_SUPPORTED
    tags: picolibc
    extra_configs:
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
# Excludes qemu_xtensa due to pathological runtimes which cannot be
# reproduced on real hardware.
tests:
  lib.heap:
  libraries.heap:
    tags: heap
    platform_exclude: m2gl025_miv qemu_xtensa esp32s2_saola
    filter: not CONFIG_SOC_NSIM
+1 −1
Original line number Diff line number Diff line
tests:
  lib.heap_align:
  libraries.heap_align:
    tags: heap heap_align
Loading