From 7db1d17ee3e6e729af33677f7f8ebb8356a8dcec Mon Sep 17 00:00:00 2001 From: Fabio Baltieri Date: Tue, 3 Jan 2023 13:08:30 +0000 Subject: [PATCH] yamllint: fix all yamllint line-length errors Fix all line-length errors detected by yamllint: yamllint -f parsable -c .yamllint $( find -regex '.*\.y[a]*ml' ) | \ grep '(line-length)' Using a limit is set to 100 columns, not touching the commandlines in GitHub workflows (at least for now). Signed-off-by: Fabio Baltieri --- .github/workflows/stale_issue.yml | 10 ++- .../misc/pine64,pinetime-key-out.yaml | 4 +- dts/bindings/adc/infineon,xmc4xxx-adc.yaml | 3 +- dts/bindings/base/base.yaml | 3 +- .../clock/intel,adsp-shim-clkctl.yaml | 3 +- dts/bindings/coredump/zephyr,coredump.yaml | 12 +-- dts/bindings/display/nxp,imx-elcdif.yaml | 32 ++++---- dts/bindings/dma/gd,gd32-dma-v1.yaml | 3 +- .../espi/nuvoton,npcx-espi-vw-conf.yaml | 5 +- dts/bindings/gpio/atmel-xplained-header.yaml | 4 +- .../gpio/atmel-xplained-pro-header.yaml | 4 +- dts/bindings/gpio/mikro-bus.yaml | 4 +- dts/bindings/i2c/nxp,imx-lpi2c.yaml | 6 +- dts/bindings/mtd/fixed-partitions.yaml | 3 +- dts/bindings/pinctrl/nuvoton,npcx-scfg.yaml | 3 +- dts/bindings/pinctrl/st,stm32-pinctrl.yaml | 3 +- dts/bindings/pinctrl/st,stm32f1-pinctrl.yaml | 3 +- dts/bindings/pwm/espressif,esp32-ledc.yaml | 30 +++++--- dts/bindings/pwm/espressif,esp32-mcpwm.yaml | 3 +- dts/bindings/timer/st,stm32-timers.yaml | 3 +- samples/bluetooth/hci_uart/sample.yaml | 3 +- samples/drivers/display/sample.yaml | 3 +- samples/drivers/eeprom/sample.yaml | 3 +- samples/drivers/jesd216/sample.yaml | 3 +- samples/drivers/spi_flash/sample.yaml | 3 +- samples/net/gptp/sample.yaml | 3 +- samples/sensor/accel_polling/sample.yaml | 3 +- .../subsys/mgmt/mcumgr/smp_svr/sample.yaml | 3 +- samples/subsys/nvs/sample.yaml | 6 +- samples/subsys/settings/sample.yaml | 3 +- samples/subsys/zbus/benchmark/sample.yaml | 8 +- .../zbus/runtime_obs_registration/sample.yaml | 3 +- .../code_relocation/testcase.yaml | 3 +- .../arm_irq_zero_latency_levels/testcase.yaml | 3 +- tests/arch/arm/arm_runtime_nmi/testcase.yaml | 3 +- .../cmsis_dsp/basicmath/testcase.yaml | 3 +- .../overlays/var_expansions/testcase.yaml | 9 ++- tests/crypto/rand32/testcase.yaml | 3 +- .../stm32_common_core/testcase.yaml | 42 +++++++---- tests/drivers/entropy/api/testcase.yaml | 3 +- tests/drivers/flash/testcase.yaml | 5 +- tests/drivers/spi/spi_loopback/testcase.yaml | 9 ++- .../drivers/uart/uart_async_api/testcase.yaml | 3 +- tests/kernel/threads/tls/testcase.yaml | 3 +- .../kernel/timer/timer_behavior/testcase.yaml | 3 +- tests/lib/cmsis_dsp/bayes/testcase.yaml | 6 +- tests/lib/cmsis_dsp/complexmath/testcase.yaml | 6 +- tests/lib/cmsis_dsp/distance/testcase.yaml | 6 +- tests/lib/cmsis_dsp/fastmath/testcase.yaml | 6 +- tests/lib/cmsis_dsp/filtering/testcase.yaml | 27 ++++--- .../lib/cmsis_dsp/interpolation/testcase.yaml | 6 +- tests/lib/cmsis_dsp/matrix/testcase.yaml | 75 ++++++++++++------- .../cmsis_dsp/quaternionmath/testcase.yaml | 6 +- tests/lib/cmsis_dsp/statistics/testcase.yaml | 6 +- tests/lib/cmsis_dsp/support/testcase.yaml | 6 +- tests/lib/cmsis_dsp/svm/testcase.yaml | 6 +- tests/lib/cmsis_dsp/transform/testcase.yaml | 63 ++++++++++------ tests/posix/common/testcase.yaml | 3 +- tests/posix/fs/testcase.yaml | 3 +- 59 files changed, 327 insertions(+), 175 deletions(-) diff --git a/.github/workflows/stale_issue.yml b/.github/workflows/stale_issue.yml index 795286113b8..b4f09b41353 100644 --- a/.github/workflows/stale_issue.yml +++ b/.github/workflows/stale_issue.yml @@ -12,8 +12,14 @@ jobs: - uses: actions/stale@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-pr-message: 'This pull request has been marked as stale because it has been open (more than) 60 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this pull request will automatically be closed in 14 days. Note, that you can always re-open a closed pull request at any time.' - stale-issue-message: 'This issue has been marked as stale because it has been open (more than) 60 days with no activity. Remove the stale label or add a comment saying that you would like to have the label removed otherwise this issue will automatically be closed in 14 days. Note, that you can always re-open a closed issue at any time.' + stale-pr-message: 'This pull request has been marked as stale because it has been open (more + than) 60 days with no activity. Remove the stale label or add a comment saying that you + would like to have the label removed otherwise this pull request will automatically be + closed in 14 days. Note, that you can always re-open a closed pull request at any time.' + stale-issue-message: 'This issue has been marked as stale because it has been open (more + than) 60 days with no activity. Remove the stale label or add a comment saying that you + would like to have the label removed otherwise this issue will automatically be closed in + 14 days. Note, that you can always re-open a closed issue at any time.' days-before-stale: 60 days-before-close: 14 stale-issue-label: 'Stale' diff --git a/boards/arm/pinetime_devkit0/dts/bindings/misc/pine64,pinetime-key-out.yaml b/boards/arm/pinetime_devkit0/dts/bindings/misc/pine64,pinetime-key-out.yaml index 69e5a8a6a81..3ca01279922 100644 --- a/boards/arm/pinetime_devkit0/dts/bindings/misc/pine64,pinetime-key-out.yaml +++ b/boards/arm/pinetime_devkit0/dts/bindings/misc/pine64,pinetime-key-out.yaml @@ -1,7 +1,9 @@ # Copyright (c) 2021 Casper Meijn # SPDX-License-Identifier: Apache-2.0 -description: Key out definition for PineTime. This pin needs to be high before the button (key_in) becomes available. +description: | + Key out definition for PineTime. This pin needs to be high before the button (key_in) becomes + available. compatible: "pine64,pinetime-key-out" diff --git a/dts/bindings/adc/infineon,xmc4xxx-adc.yaml b/dts/bindings/adc/infineon,xmc4xxx-adc.yaml index 017f7bcf215..2d0f394bb5b 100644 --- a/dts/bindings/adc/infineon,xmc4xxx-adc.yaml +++ b/dts/bindings/adc/infineon,xmc4xxx-adc.yaml @@ -5,7 +5,8 @@ description: | Infineon XMC4XXX ADC Each ADC group XMC4XXX is assigned to a Zephyr device. Refer to Infineon XMC4XXX reference manual (Section Port I/O functions) for the group/chanel mapping to a specific port-pin on the board. - For example on the xmc45_relax_kit P14.0 is mapped to adc0,channel0 and P14.1 is mapped to adc0,channel1. + For example on the xmc45_relax_kit P14.0 is mapped to adc0,channel0 and P14.1 is mapped to + adc0,channel1. compatible: "infineon,xmc4xxx-adc" diff --git a/dts/bindings/base/base.yaml b/dts/bindings/base/base.yaml index 7027b113e01..87706a0a1b0 100644 --- a/dts/bindings/base/base.yaml +++ b/dts/bindings/base/base.yaml @@ -57,7 +57,8 @@ properties: type: string required: false deprecated: true - description: Human readable string describing the device (used as device_get_binding() argument) + description: | + Human readable string describing the device (used as device_get_binding() argument) clocks: type: phandle-array diff --git a/dts/bindings/clock/intel,adsp-shim-clkctl.yaml b/dts/bindings/clock/intel,adsp-shim-clkctl.yaml index d2f0be0ba3f..ea00f0c43c5 100644 --- a/dts/bindings/clock/intel,adsp-shim-clkctl.yaml +++ b/dts/bindings/clock/intel,adsp-shim-clkctl.yaml @@ -8,7 +8,8 @@ compatible: "intel,adsp-shim-clkctl" properties: adsp-clkctl-clk-wovcro: type: int - description: Index of WOVCRO clock encoding in the encoding array (if wovcro-supported is true). + description: | + Index of WOVCRO clock encoding in the encoding array (if wovcro-supported is true). adsp-clkctl-clk-lpro: type: int diff --git a/dts/bindings/coredump/zephyr,coredump.yaml b/dts/bindings/coredump/zephyr,coredump.yaml index 7b49acf2f6b..a24e5963c60 100644 --- a/dts/bindings/coredump/zephyr,coredump.yaml +++ b/dts/bindings/coredump/zephyr,coredump.yaml @@ -21,12 +21,12 @@ properties: into the coredump. The memory-regions array can contain 0 or more entries, and more regions can be added at runtime through the coredump_device_register_memory API. A device of type COREDUMP_TYPE_CALLBACK must specify exactly one entry in the - memory-regions array with a size of 0 and a desired size. The coredump device will statically - allocate a block of memory of the desired size and provide a callback with a pointer to - that memory which will be invoked at the time of a dump. This allows a consumer to add data - into the coredump that may not be directly accessible through a memcpy and/or provides an - opportunity to manipulate data for inclusion in the dump. The coredump_device_register_memory - API is not available for a device of this type. + memory-regions array with a size of 0 and a desired size. The coredump device will + statically allocate a block of memory of the desired size and provide a callback with a + pointer to that memory which will be invoked at the time of a dump. This allows a consumer + to add data into the coredump that may not be directly accessible through a memcpy and/or + provides an opportunity to manipulate data for inclusion in the dump. The + coredump_device_register_memory API is not available for a device of this type. enum: - "COREDUMP_TYPE_MEMCPY" - "COREDUMP_TYPE_CALLBACK" diff --git a/dts/bindings/display/nxp,imx-elcdif.yaml b/dts/bindings/display/nxp,imx-elcdif.yaml index 502f278149f..672d7247901 100644 --- a/dts/bindings/display/nxp,imx-elcdif.yaml +++ b/dts/bindings/display/nxp,imx-elcdif.yaml @@ -66,22 +66,22 @@ properties: - 15 description: OR'ed value of elcdif_polarity_flags, used to control the signal polarity. - 0000 VSYNC active low, HSYNC active low, Drive data on falling edge, Data enable active low. - 0001 VSYNC active low, HSYNC active low, Drive data on falling edge, Data enable active high. - 0010 VSYNC active low, HSYNC active low, Drive data on rising edge, Data enable active low. - 0011 VSYNC active low, HSYNC active low, Drive data on rising edge, Data enable active high. - 0100 VSYNC active low, HSYNC active high, Drive data on falling edge, Data enable active low. - 0101 VSYNC active low, HSYNC active high, Drive data on falling edge, Data enable active high. - 0110 VSYNC active low, HSYNC active high, Drive data on rising edge, Data enable active low. - 0111 VSYNC active low, HSYNC active high, Drive data on rising edge, Data enable active high. - 1000 VSYNC active high, HSYNC active low, Drive data on falling edge, Data enable active low. - 1001 VSYNC active high, HSYNC active low, Drive data on falling edge, Data enable active high. - 1010 VSYNC active high, HSYNC active low, Drive data on rising edge, Data enable active low. - 1011 VSYNC active high, HSYNC active low, Drive data on rising edge, Data enable active high. - 1100 VSYNC active high, HSYNC active high, Drive data on falling edge, Data enable active low. - 1101 VSYNC active high, HSYNC active high, Drive data on falling edge, Data enable active high. - 1110 VSYNC active high, HSYNC active high, Drive data on rising edge, Data enable active low. - 1111 VSYNC active high, HSYNC active high, Drive data on rising edge, Data enable active high. + 0000 VSYNC active low, HSYNC active low, Drive data on falling edge, DE active low. + 0001 VSYNC active low, HSYNC active low, Drive data on falling edge, DE active high. + 0010 VSYNC active low, HSYNC active low, Drive data on rising edge, DE active low. + 0011 VSYNC active low, HSYNC active low, Drive data on rising edge, DE active high. + 0100 VSYNC active low, HSYNC active high, Drive data on falling edge, DE active low. + 0101 VSYNC active low, HSYNC active high, Drive data on falling edge, DE active high. + 0110 VSYNC active low, HSYNC active high, Drive data on rising edge, DE active low. + 0111 VSYNC active low, HSYNC active high, Drive data on rising edge, DE active high. + 1000 VSYNC active high, HSYNC active low, Drive data on falling edge, DE active low. + 1001 VSYNC active high, HSYNC active low, Drive data on falling edge, DE active high. + 1010 VSYNC active high, HSYNC active low, Drive data on rising edge, DE active low. + 1011 VSYNC active high, HSYNC active low, Drive data on rising edge, DE active high. + 1100 VSYNC active high, HSYNC active high, Drive data on falling edge, DE active low. + 1101 VSYNC active high, HSYNC active high, Drive data on falling edge, DE active high. + 1110 VSYNC active high, HSYNC active high, Drive data on rising edge, DE active low. + 1111 VSYNC active high, HSYNC active high, Drive data on rising edge, DE active high. pixel-format: type: string diff --git a/dts/bindings/dma/gd,gd32-dma-v1.yaml b/dts/bindings/dma/gd,gd32-dma-v1.yaml index e40197e0b1a..58f941fcd87 100644 --- a/dts/bindings/dma/gd,gd32-dma-v1.yaml +++ b/dts/bindings/dma/gd,gd32-dma-v1.yaml @@ -81,7 +81,8 @@ description: | Where (data-width * burst-length) must be multiple numbers of burst transfer size. For example, In the case of data-width is 'byte' and burst-length is 8. If the fifo-threshold is a 2-word case, it runs one burst transfer to transfer 8 bytes. - Or the fifo-threshold is a 4-word case, runs two times burst transfer to transferring 8 bytes each time. + Or the fifo-threshold is a 4-word case, runs two times burst transfer to transferring 8 bytes each + time. compatible: "gd,gd32-dma-v1" diff --git a/dts/bindings/espi/nuvoton,npcx-espi-vw-conf.yaml b/dts/bindings/espi/nuvoton,npcx-espi-vw-conf.yaml index ec21973dd1f..1a9bc5bc805 100644 --- a/dts/bindings/espi/nuvoton,npcx-espi-vw-conf.yaml +++ b/dts/bindings/espi/nuvoton,npcx-espi-vw-conf.yaml @@ -6,7 +6,10 @@ description: Nuvoton NPCX eSPI Virtual Wire (VW) mapping child node compatible: "nuvoton,npcx-espi-vw-conf" child-binding: - description: Child node to to present the mapping between VW signal, its core register and input source of MIWU + description: | + Child node to to present the mapping between VW signal, its core register and input source of + MIWU + properties: vw-reg: type: array diff --git a/dts/bindings/gpio/atmel-xplained-header.yaml b/dts/bindings/gpio/atmel-xplained-header.yaml index ad3b5592396..d2088e5843b 100644 --- a/dts/bindings/gpio/atmel-xplained-header.yaml +++ b/dts/bindings/gpio/atmel-xplained-header.yaml @@ -26,8 +26,8 @@ description: | VDD Documentation: - * https://www.microchip.com/development-tools/xplained-boards - * http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42091-Atmel-Xplained-Pro-Hardware-Development-Kit_User%20Guide.pdf + https://www.microchip.com/development-tools/xplained-boards + http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42091-Atmel-Xplained-Pro-Hardware-Development-Kit_User%20Guide.pdf This binding provides a nexus mapping for 10 pins where pins are disposed to have a even and odd column: diff --git a/dts/bindings/gpio/atmel-xplained-pro-header.yaml b/dts/bindings/gpio/atmel-xplained-pro-header.yaml index 173223e7b45..0572537a919 100644 --- a/dts/bindings/gpio/atmel-xplained-pro-header.yaml +++ b/dts/bindings/gpio/atmel-xplained-pro-header.yaml @@ -25,8 +25,8 @@ description: | or application specific headers. Documentation: - * https://www.microchip.com/development-tools/xplained-boards - * http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42091-Atmel-Xplained-Pro-Hardware-Development-Kit_User%20Guide.pdf + https://www.microchip.com/development-tools/xplained-boards + http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42091-Atmel-Xplained-Pro-Hardware-Development-Kit_User%20Guide.pdf This binding provides a nexus mapping for 20 pins where pins are disposed to have a even and odd column: diff --git a/dts/bindings/gpio/mikro-bus.yaml b/dts/bindings/gpio/mikro-bus.yaml index 526bc11200a..aabb52aa5d1 100644 --- a/dts/bindings/gpio/mikro-bus.yaml +++ b/dts/bindings/gpio/mikro-bus.yaml @@ -8,8 +8,8 @@ description: | edges of the board. Documentation: - * https://www.mikroe.com/mikrobus - * https://download.mikroe.com/documents/standards/mikrobus/mikrobus-standard-specification-v200.pdf + https://www.mikroe.com/mikrobus + https://download.mikroe.com/documents/standards/mikrobus/mikrobus-standard-specification-v200.pdf This binding provides a nexus mapping for 10 pins, left side pins are numbered 0 - 5 (AN - MOSI), the right side pins are numbered 6 - 10 diff --git a/dts/bindings/i2c/nxp,imx-lpi2c.yaml b/dts/bindings/i2c/nxp,imx-lpi2c.yaml index c8192541333..79c617f0ae9 100644 --- a/dts/bindings/i2c/nxp,imx-lpi2c.yaml +++ b/dts/bindings/i2c/nxp,imx-lpi2c.yaml @@ -21,9 +21,11 @@ properties: scl-gpios: type: phandle-array description: | - GPIO to which the I2C SCL signal is routed. This is only needed for I2C bus recovery support. + GPIO to which the I2C SCL signal is routed. This is only needed for I2C bus recovery + support. sda-gpios: type: phandle-array description: | - GPIO to which the I2C SDA signal is routed. This is only needed for I2C bus recovery support. + GPIO to which the I2C SDA signal is routed. This is only needed for I2C bus recovery + support. diff --git a/dts/bindings/mtd/fixed-partitions.yaml b/dts/bindings/mtd/fixed-partitions.yaml index 07b235be036..0f4ec0ce21e 100644 --- a/dts/bindings/mtd/fixed-partitions.yaml +++ b/dts/bindings/mtd/fixed-partitions.yaml @@ -16,7 +16,8 @@ child-binding: properties: label: type: string - description: Human readable string describing the device (used as device_get_binding() argument) + description: | + Human readable string describing the device (used as device_get_binding() argument) read-only: type: boolean description: if the partition is read-only or not diff --git a/dts/bindings/pinctrl/nuvoton,npcx-scfg.yaml b/dts/bindings/pinctrl/nuvoton,npcx-scfg.yaml index bf40c3a8122..edbc952354c 100644 --- a/dts/bindings/pinctrl/nuvoton,npcx-scfg.yaml +++ b/dts/bindings/pinctrl/nuvoton,npcx-scfg.yaml @@ -19,7 +19,8 @@ properties: "#lvol-cells": type: int required: true - description: Number of items to expect in a SCFG LV_GPIO_CTL (Low level IO controllers) specifier + description: | + Number of items to expect in a SCFG LV_GPIO_CTL (Low level IO controllers) specifier alt-cells: - group diff --git a/dts/bindings/pinctrl/st,stm32-pinctrl.yaml b/dts/bindings/pinctrl/st,stm32-pinctrl.yaml index ae53faf392a..3e76bd9791e 100644 --- a/dts/bindings/pinctrl/st,stm32-pinctrl.yaml +++ b/dts/bindings/pinctrl/st,stm32-pinctrl.yaml @@ -52,7 +52,8 @@ child-binding: required: true type: int description: | - Reused from https://github.com/torvalds/linux/blob/master/Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml + Reused from + https://github.com/torvalds/linux/blob/master/Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml Integer array, represents gpio pin number and mux setting. These defines are calculated as: ((port * 16 + line) << 8) | function With: diff --git a/dts/bindings/pinctrl/st,stm32f1-pinctrl.yaml b/dts/bindings/pinctrl/st,stm32f1-pinctrl.yaml index 40ddee7318e..2ebe2d529a4 100644 --- a/dts/bindings/pinctrl/st,stm32f1-pinctrl.yaml +++ b/dts/bindings/pinctrl/st,stm32f1-pinctrl.yaml @@ -59,7 +59,8 @@ child-binding: required: true type: int description: | - Adapted from https://github.com/torvalds/linux/blob/master/Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml + Adapted from + https://github.com/torvalds/linux/blob/master/Documentation/devicetree/bindings/pinctrl/st,stm32-pinctrl.yaml Integer array, represents gpio pin number and mux setting. These defines are calculated as: ((port * 16 + line) << 8) | (function << 6) | remap) With: diff --git a/dts/bindings/pwm/espressif,esp32-ledc.yaml b/dts/bindings/pwm/espressif,esp32-ledc.yaml index aadd878c31c..53c5822555b 100644 --- a/dts/bindings/pwm/espressif,esp32-ledc.yaml +++ b/dts/bindings/pwm/espressif,esp32-ledc.yaml @@ -5,8 +5,8 @@ description: | Espressif's LEDC controller Node - The LEDC controller is primarily designed to control the intensity of LEDs, although it can be used to generate - PWM signals for other purposes as well. + The LEDC controller is primarily designed to control the intensity of LEDs, although it can be + used to generate PWM signals for other purposes as well. The mapping between the channel and GPIO is done through pinctrl @@ -26,13 +26,15 @@ description: | }; }; - If another GPIO mapping is desired, check if -pinctrl.dtsi already have it defined, otherwise, define the - required mapping at your own application folder into a custom .overlay file. - The 'pinmux' property uses a macro defined in https://github.com/zephyrproject-rtos/hal_espressif/tree/zephyr/include/dt-bindings/pinctrl + If another GPIO mapping is desired, check if -pinctrl.dtsi already have it defined, + otherwise, define the required mapping at your own application folder into a custom + .overlay file. + The 'pinmux' property uses a macro defined in + https://github.com/zephyrproject-rtos/hal_espressif/tree/zephyr/include/dt-bindings/pinctrl Before including a new node, check if the desired mapping is available according to the SoC. - As an example, the 'ledc0_custom' state below illustrates an alternate mapping using another set of channels and - pins in a custom overlay file. + As an example, the 'ledc0_custom' state below illustrates an alternate mapping using another set + of channels and pins in a custom overlay file. &pinctrl { @@ -69,7 +71,8 @@ description: | }; }; - Note: The channel's 'reg' property defines the ID of the channel. It must match the channel used in the 'pinmux'. + Note: The channel's 'reg' property defines the ID of the channel. It must match the channel used + in the 'pinmux'. compatible: "espressif,esp32-ledc" @@ -107,10 +110,12 @@ child-binding: description: | The esp32 has 8 low speed channel and 8 high speed channels. - The low speed channel are mapped from channel 0 to 7, and the high speed are mapped from channel 8 to 15. + The low speed channel are mapped from channel 0 to 7, and the high speed are mapped from + channel 8 to 15. - High speed channels are only available in the esp32 SoC. Esp32s2 has only 8 available channels, and esp32c3 - has 6. In these SoCs there is no differentiation between low or high speed. + High speed channels are only available in the esp32 SoC. Esp32s2 has only 8 available + channels, and esp32c3 has 6. In these SoCs there is no differentiation between low or high + speed. timer: type: int @@ -122,7 +127,8 @@ child-binding: - 3 description: | Timer selection. - For maximum flexibility, the high-speed as well as the low-speed channels can be driven from one of four high-speed/low-speed timers. + For maximum flexibility, the high-speed as well as the low-speed channels can be driven from + one of four high-speed/low-speed timers. pwm-cells: - channel diff --git a/dts/bindings/pwm/espressif,esp32-mcpwm.yaml b/dts/bindings/pwm/espressif,esp32-mcpwm.yaml index 5184ba586c6..d39e4ff95ea 100644 --- a/dts/bindings/pwm/espressif,esp32-mcpwm.yaml +++ b/dts/bindings/pwm/espressif,esp32-mcpwm.yaml @@ -17,7 +17,8 @@ description: | and asymmetric configuration. MCPWMxA and MCPWMxB will share the same timer, thus having the same operating frequency. - The driver currently always use the timer x for operator x. Timer 0 will use operator 0 for PWM0A/B. + The driver currently always use the timer x for operator x. Timer 0 will use operator 0 for + PWM0A/B. Timer 1 will use operator 1 for PWM1A/B, and so on. Mapping channel ID: diff --git a/dts/bindings/timer/st,stm32-timers.yaml b/dts/bindings/timer/st,stm32-timers.yaml index f46b29e77c3..e5140531ce8 100644 --- a/dts/bindings/timer/st,stm32-timers.yaml +++ b/dts/bindings/timer/st,stm32-timers.yaml @@ -42,6 +42,7 @@ properties: are set only when the counter is counting up. * STM32_TIM_COUNTERMODE_CENTER_UP_DOWN - counts up and down alternatively. Output compare interrupt flags of output channels - are set only when the counter is counting up or down. + are set only when the counter is counting up or + down. If absent, then STM32_TIM_COUNTERMODE_UP is used (reset state). diff --git a/samples/bluetooth/hci_uart/sample.yaml b/samples/bluetooth/hci_uart/sample.yaml index 92ff6a96377..b6eea1b1cf5 100644 --- a/samples/bluetooth/hci_uart/sample.yaml +++ b/samples/bluetooth/hci_uart/sample.yaml @@ -47,5 +47,6 @@ tests: platform_allow: nrf52833dk_nrf52833 integration_platforms: - nrf52833dk_nrf52833 - extra_args: OVERLAY_CONFIG=overlay-all-bt_ll_sw_split.conf DTC_OVERLAY_FILE=./boards/nrf52833dk_nrf52833_df.overlay + extra_args: OVERLAY_CONFIG=overlay-all-bt_ll_sw_split.conf + DTC_OVERLAY_FILE=./boards/nrf52833dk_nrf52833_df.overlay tags: uart bluetooth diff --git a/samples/drivers/display/sample.yaml b/samples/drivers/display/sample.yaml index 889f39d7ea8..a97b8c5d9e2 100644 --- a/samples/drivers/display/sample.yaml +++ b/samples/drivers/display/sample.yaml @@ -4,7 +4,8 @@ sample: tests: sample.display.shield.adafruit_2_8_tft_touch_v2: depends_on: arduino_gpio arduino_i2c arduino_spi - platform_exclude: reel_board reel_board_v2 ubx_evkannab1_nrf52832 stm32f769i_disco pan1781_evb pan1782_evb + platform_exclude: reel_board reel_board_v2 ubx_evkannab1_nrf52832 stm32f769i_disco pan1781_evb + pan1782_evb extra_args: SHIELD=adafruit_2_8_tft_touch_v2 tags: display shield harness: console diff --git a/samples/drivers/eeprom/sample.yaml b/samples/drivers/eeprom/sample.yaml index 5878fb10a54..53f0ea1ffa0 100644 --- a/samples/drivers/eeprom/sample.yaml +++ b/samples/drivers/eeprom/sample.yaml @@ -18,7 +18,8 @@ tests: sample.drivers.eeprom.shield.x_nucleo_eeprma2: tags: eeprom shield depends_on: arduino_gpio arduino_i2c arduino_spi - platform_exclude: ubx_evkannab1_nrf52832 sam_v71_xult sam_v71b_xult pan1781_evb pan1782_evb pan1770_evb pan1780_evb + platform_exclude: ubx_evkannab1_nrf52832 sam_v71_xult sam_v71b_xult pan1781_evb pan1782_evb + pan1770_evb pan1780_evb extra_args: SHIELD=x_nucleo_eeprma2 harness: console harness_config: diff --git a/samples/drivers/jesd216/sample.yaml b/samples/drivers/jesd216/sample.yaml index 48396be0a28..9d4a5cc6292 100644 --- a/samples/drivers/jesd216/sample.yaml +++ b/samples/drivers/jesd216/sample.yaml @@ -11,7 +11,8 @@ common: - "jedec-id =" tests: sample.drivers.jesd216: - platform_exclude: hifive1 hifive_unleashed hifive_unmatched mimxrt1170_evk_cm7 mimxrt1170_evk_cm4 + platform_exclude: hifive1 hifive_unleashed hifive_unmatched mimxrt1170_evk_cm7 + mimxrt1170_evk_cm4 filter: dt_compat_enabled("jedec,spi-nor") depends_on: spi sample.drivers.jesd216.nrf52840dk_spi: diff --git a/samples/drivers/spi_flash/sample.yaml b/samples/drivers/spi_flash/sample.yaml index c8eb6b912bf..f392d2b1501 100644 --- a/samples/drivers/spi_flash/sample.yaml +++ b/samples/drivers/spi_flash/sample.yaml @@ -3,7 +3,8 @@ sample: tests: sample.drivers.spi.flash: tags: spi flash - filter: dt_compat_enabled("jedec,spi-nor") or dt_compat_enabled("st,stm32-qspi-nor") or dt_compat_enabled("st,stm32-ospi-nor") + filter: dt_compat_enabled("jedec,spi-nor") or dt_compat_enabled("st,stm32-qspi-nor") or + dt_compat_enabled("st,stm32-ospi-nor") platform_exclude: hifive_unmatched harness: console harness_config: diff --git a/samples/net/gptp/sample.yaml b/samples/net/gptp/sample.yaml index 0eb13a7cafc..6c5b7c2b40e 100644 --- a/samples/net/gptp/sample.yaml +++ b/samples/net/gptp/sample.yaml @@ -6,7 +6,8 @@ sample: name: gPTP sample app tests: sample.net.gptp: - platform_allow: frdm_k64f sam_e70_xplained native_posix native_posix_64 nucleo_f767zi nucleo_h743zi nucleo_h745zi_q_m7 + platform_allow: frdm_k64f sam_e70_xplained native_posix native_posix_64 nucleo_f767zi + nucleo_h743zi nucleo_h745zi_q_m7 depends_on: netif integration_platforms: - frdm_k64f diff --git a/samples/sensor/accel_polling/sample.yaml b/samples/sensor/accel_polling/sample.yaml index 16772b1f027..2b51c2f0e8a 100644 --- a/samples/sensor/accel_polling/sample.yaml +++ b/samples/sensor/accel_polling/sample.yaml @@ -8,7 +8,8 @@ tests: harness_config: type: one_line regex: - - "^\\s*[0-9A-Za-z_,+-.]*@[0-9A-Fa-f]* \\[m\/s\\^2\\]: \\(\\s*-?[0-9\\.]*,\\s*-?[0-9\\.]*,\\s*-?[0-9\\.]*\\)$" + - "^\\s*[0-9A-Za-z_,+-.]*@[0-9A-Fa-f]* \\[m\/s\\^2\\]: \ + \\(\\s*-?[0-9\\.]*,\\s*-?[0-9\\.]*,\\s*-?[0-9\\.]*\\)$" integration_platforms: - cc1352r_sensortag # adxl362 - blueclover_plt_demo_v2_nrf52832 # bmi270 diff --git a/samples/subsys/mgmt/mcumgr/smp_svr/sample.yaml b/samples/subsys/mgmt/mcumgr/smp_svr/sample.yaml index 5b5c472e9db..fef3f21e690 100644 --- a/samples/subsys/mgmt/mcumgr/smp_svr/sample.yaml +++ b/samples/subsys/mgmt/mcumgr/smp_svr/sample.yaml @@ -19,7 +19,8 @@ tests: sample.mcumgr.smp_svr.cdc: extra_args: OVERLAY_CONFIG="overlay-cdc.conf" DTC_OVERLAY_FILE="usb.overlay" - platform_allow: nrf52833dk_nrf52820 nrf52833dk_nrf52833 nrf52840dk_nrf52840 nrf5340dk_nrf5340_cpuapp pinnacle_100_dvk + platform_allow: nrf52833dk_nrf52820 nrf52833dk_nrf52833 nrf52840dk_nrf52840 + nrf5340dk_nrf5340_cpuapp pinnacle_100_dvk integration_platforms: - nrf52833dk_nrf52820 - nrf52833dk_nrf52833 diff --git a/samples/subsys/nvs/sample.yaml b/samples/subsys/nvs/sample.yaml index ec8b3d6016c..d8a7d6339af 100644 --- a/samples/subsys/nvs/sample.yaml +++ b/samples/subsys/nvs/sample.yaml @@ -14,4 +14,8 @@ tests: - "Id: 2, Key: ff fe fd fc fb fa f9 f8" - "Id: 3, Reboot_counter: (.*)" - "Id: 4, Data: DATA" - - "Id: 5, Longarray: 0 1 2 3 4 5 6 7 8 9 a b c d e f 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f 30 31 32 33 34 35 36 37 38 39 3a 3b 3c 3d 3e 3f 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f 50 51 52 53 54 55 56 57 58 59 5a 5b 5c 5d 5e 5f 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70 71 72 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f" + - "Id: 5, Longarray: 0 1 2 3 4 5 6 7 8 9 a b c d e f 10 11 12 13 14 15 16 17 18 19 1a 1b \ + 1c 1d 1e 1f 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f 30 31 32 33 34 35 36 37 38 \ + 39 3a 3b 3c 3d 3e 3f 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f 50 51 52 53 54 55 \ + 56 57 58 59 5a 5b 5c 5d 5e 5f 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70 71 72 \ + 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f" diff --git a/samples/subsys/settings/sample.yaml b/samples/subsys/settings/sample.yaml index 325fde479ec..5c5d06ae5ef 100644 --- a/samples/subsys/settings/sample.yaml +++ b/samples/subsys/settings/sample.yaml @@ -33,4 +33,5 @@ tests: - "direct.length_2 = 54" - " = 5" - "The settings destination off the key has got value: \"RT\"" - - "String value \"rtos\" was retrieved from the settings destination off the key " + - "String value \"rtos\" was retrieved from the settings destination off the key \ + " diff --git a/samples/subsys/zbus/benchmark/sample.yaml b/samples/subsys/zbus/benchmark/sample.yaml index 495baa4f79d..323c59c2815 100644 --- a/samples/subsys/zbus/benchmark/sample.yaml +++ b/samples/subsys/zbus/benchmark/sample.yaml @@ -19,7 +19,9 @@ tests: - CONFIG_BM_ONE_TO=8 - CONFIG_BM_MESSAGE_SIZE=256 - CONFIG_BM_ASYNC=y - platform_exclude: qemu_x86 qemu_x86_64 qemu_riscv32_smp native_posix native_posix_64 qemu_riscv32_smp qemu_cortex_a53_smp qemu_riscv64_smp qemu_leon3 qemu_xtensa qemu_cortex_a53 qemu_riscv32 qemu_malta qemu_malta_be qemu_arc_hs6x qemu_riscv64 m2gl025_miv hifive_unleashed + platform_exclude: qemu_x86 qemu_x86_64 qemu_riscv32_smp native_posix native_posix_64 + qemu_riscv32_smp qemu_cortex_a53_smp qemu_riscv64_smp qemu_leon3 qemu_xtensa qemu_cortex_a53 + qemu_riscv32 qemu_malta qemu_malta_be qemu_arc_hs6x qemu_riscv64 m2gl025_miv hifive_unleashed sample.zbus.benchmark_sync: tags: zbus min_ram: 16 @@ -38,4 +40,6 @@ tests: - CONFIG_BM_ONE_TO=8 - CONFIG_BM_MESSAGE_SIZE=256 - CONFIG_BM_ASYNC=n - platform_exclude: qemu_x86 qemu_x86_64 qemu_riscv32_smp native_posix native_posix_64 qemu_riscv32_smp qemu_cortex_a53_smp qemu_riscv64_smp qemu_leon3 qemu_xtensa qemu_cortex_a53 qemu_riscv32 m2gl025_miv m2gl025_miv + platform_exclude: qemu_x86 qemu_x86_64 qemu_riscv32_smp native_posix native_posix_64 + qemu_riscv32_smp qemu_cortex_a53_smp qemu_riscv64_smp qemu_leon3 qemu_xtensa qemu_cortex_a53 + qemu_riscv32 m2gl025_miv m2gl025_miv diff --git a/samples/subsys/zbus/runtime_obs_registration/sample.yaml b/samples/subsys/zbus/runtime_obs_registration/sample.yaml index 80f38737e53..255b08405de 100644 --- a/samples/subsys/zbus/runtime_obs_registration/sample.yaml +++ b/samples/subsys/zbus/runtime_obs_registration/sample.yaml @@ -3,7 +3,8 @@ sample: tests: sample.zbus.runtime_os_registration: min_ram: 16 - platform_exclude: hifive_unleashed qemu_xtensa qemu_cortex_a53_smp qemu_cortex_a53 qemu_riscv32_smp qemu_riscv64_smp qemu_riscv64 qemu_leon3 qemu_x86_64 + platform_exclude: hifive_unleashed qemu_xtensa qemu_cortex_a53_smp qemu_cortex_a53 + qemu_riscv32_smp qemu_riscv64_smp qemu_riscv64 qemu_leon3 qemu_x86_64 harness: console harness_config: type: multi_line diff --git a/tests/application_development/code_relocation/testcase.yaml b/tests/application_development/code_relocation/testcase.yaml index ef1f9172f4e..053d9d3f694 100644 --- a/tests/application_development/code_relocation/testcase.yaml +++ b/tests/application_development/code_relocation/testcase.yaml @@ -15,7 +15,8 @@ tests: tests.application_development.code_relocation.no_itcm: filter: not CONFIG_CPU_HAS_NXP_MPU and not dt_chosen_enabled("zephyr,itcm") arch_allow: arm - extra_sections: _SRAM2_RODATA_SECTION_NAME _SRAM_TEXT_SECTION_NAME _SRAM_RODATA_SECTION_NAME _SRAM_DATA_SECTION_NAME _CUSTOM_SECTION_NAME2 + extra_sections: _SRAM2_RODATA_SECTION_NAME _SRAM_TEXT_SECTION_NAME _SRAM_RODATA_SECTION_NAME + _SRAM_DATA_SECTION_NAME _CUSTOM_SECTION_NAME2 platform_allow: qemu_cortex_m3 mps2_an385 sam_e70_xplained integration_platforms: - qemu_cortex_m3 diff --git a/tests/arch/arm/arm_irq_zero_latency_levels/testcase.yaml b/tests/arch/arm/arm_irq_zero_latency_levels/testcase.yaml index aa8f2a6575e..b1cd03ef873 100644 --- a/tests/arch/arm/arm_irq_zero_latency_levels/testcase.yaml +++ b/tests/arch/arm/arm_irq_zero_latency_levels/testcase.yaml @@ -1,5 +1,6 @@ common: - filter: (CONFIG_ARMV6_M_ARMV8_M_BASELINE or CONFIG_ARMV7_M_ARMV8_M_MAINLINE) and not CONFIG_SOC_FAMILY_NRF + filter: (CONFIG_ARMV6_M_ARMV8_M_BASELINE or CONFIG_ARMV7_M_ARMV8_M_MAINLINE) and + not CONFIG_SOC_FAMILY_NRF tags: arm interrupt arch_allow: arm tests: diff --git a/tests/arch/arm/arm_runtime_nmi/testcase.yaml b/tests/arch/arm/arm_runtime_nmi/testcase.yaml index cc88ae56add..ee10f615e52 100644 --- a/tests/arch/arm/arm_runtime_nmi/testcase.yaml +++ b/tests/arch/arm/arm_runtime_nmi/testcase.yaml @@ -1,5 +1,6 @@ tests: arch.interrupt.arm.nmi: - filter: CONFIG_ARMV6_M_ARMV8_M_BASELINE or CONFIG_ARMV7_M_ARMV8_M_MAINLINE and not CONFIG_BUILD_WITH_TFM + filter: CONFIG_ARMV6_M_ARMV8_M_BASELINE or CONFIG_ARMV7_M_ARMV8_M_MAINLINE and + not CONFIG_BUILD_WITH_TFM arch_allow: arm tags: nmi interrupt arm diff --git a/tests/benchmarks/cmsis_dsp/basicmath/testcase.yaml b/tests/benchmarks/cmsis_dsp/basicmath/testcase.yaml index 1e2a5c5aa32..b7f4ecb791e 100644 --- a/tests/benchmarks/cmsis_dsp/basicmath/testcase.yaml +++ b/tests/benchmarks/cmsis_dsp/basicmath/testcase.yaml @@ -9,7 +9,8 @@ tests: min_flash: 128 min_ram: 64 benchmark.cmsis_dsp.basicmath.fpu: - filter: (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1 + filter: (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1 integration_platforms: - mps2_an521_remote - mps3_an547 diff --git a/tests/cmake/overlays/var_expansions/testcase.yaml b/tests/cmake/overlays/var_expansions/testcase.yaml index 4d33884b4f4..ded0d0f9a87 100644 --- a/tests/cmake/overlays/var_expansions/testcase.yaml +++ b/tests/cmake/overlays/var_expansions/testcase.yaml @@ -4,8 +4,11 @@ common: platform_allow: native_posix tests: cmake.overlays.var_expansions.CONF_FILE: - extra_args: CONF_FILE=${ZEPHYR_MY_MODULE_NAME_MODULE_DIR}/zephyr/my_module-overlay.conf;${ZEPHYR_MY_EXTRA_MODULE_NAME_MODULE_DIR}/zephyr/my_extra_module-overlay.conf;prj.conf + extra_args: + CONF_FILE=${ZEPHYR_MY_MODULE_NAME_MODULE_DIR}/zephyr/my_module-overlay.conf;${ZEPHYR_MY_EXTRA_MODULE_NAME_MODULE_DIR}/zephyr/my_extra_module-overlay.conf;prj.conf cmake.overlays.var_expansions.OVERLAY_CONFIG: - extra_args: OVERLAY_CONFIG=${ZEPHYR_MY_MODULE_NAME_MODULE_DIR}/zephyr/my_module-overlay.conf;${ZEPHYR_MY_EXTRA_MODULE_NAME_MODULE_DIR}/zephyr/my_extra_module-overlay.conf + extra_args: + OVERLAY_CONFIG=${ZEPHYR_MY_MODULE_NAME_MODULE_DIR}/zephyr/my_module-overlay.conf;${ZEPHYR_MY_EXTRA_MODULE_NAME_MODULE_DIR}/zephyr/my_extra_module-overlay.conf cmake.overlays.var_expansions.DTC_OVERLAY_FILE: - extra_args: DTC_OVERLAY_FILE=${ZEPHYR_MY_MODULE_NAME_MODULE_DIR}/zephyr/my_module-board.overlay;${ZEPHYR_MY_EXTRA_MODULE_NAME_MODULE_DIR}/zephyr/my_extra_module-board.overlay + extra_args: + DTC_OVERLAY_FILE=${ZEPHYR_MY_MODULE_NAME_MODULE_DIR}/zephyr/my_module-board.overlay;${ZEPHYR_MY_EXTRA_MODULE_NAME_MODULE_DIR}/zephyr/my_extra_module-board.overlay diff --git a/tests/crypto/rand32/testcase.yaml b/tests/crypto/rand32/testcase.yaml index b4e42931d7c..69cf92818e9 100644 --- a/tests/crypto/rand32/testcase.yaml +++ b/tests/crypto/rand32/testcase.yaml @@ -18,5 +18,6 @@ tests: min_ram: 16 drivers.rand32.random_psa_crypto: filter: CONFIG_BUILD_WITH_TFM - extra_args: DTC_OVERLAY_FILE=./entropy_psa_crypto.overlay CONF_FILE=prj_hw_random_psa_crypto.conf + extra_args: + DTC_OVERLAY_FILE=./entropy_psa_crypto.overlay CONF_FILE=prj_hw_random_psa_crypto.conf tags: crypto entropy random security psa-crypto diff --git a/tests/drivers/clock_control/stm32_clock_configuration/stm32_common_core/testcase.yaml b/tests/drivers/clock_control/stm32_clock_configuration/stm32_common_core/testcase.yaml index edc9c54c9ed..8fcb04ddde7 100644 --- a/tests/drivers/clock_control/stm32_clock_configuration/stm32_common_core/testcase.yaml +++ b/tests/drivers/clock_control/stm32_clock_configuration/stm32_common_core/testcase.yaml @@ -9,27 +9,32 @@ common: tags: clock-control tests: drivers.stm32_clock_configuration.common_core.l4_l5.sysclksrc_pll_48_msi_4: - extra_args: DTC_OVERLAY_FILE="boards/clear_clocks.overlay;boards/clear_msi.overlay;boards/pll_48_msi_4.overlay" + extra_args: + DTC_OVERLAY_FILE="boards/clear_clocks.overlay;boards/clear_msi.overlay;boards/pll_48_msi_4.overlay" platform_allow: disco_l475_iot1 nucleo_l4r5zi stm32l562e_dk integration_platforms: - disco_l475_iot1 drivers.stm32_clock_configuration.common_core.l4_l5.sysclksrc_pll_64_hsi_16: - extra_args: DTC_OVERLAY_FILE="boards/clear_clocks.overlay;boards/clear_msi.overlay;boards/pll_64_hsi_16.overlay" + extra_args: + DTC_OVERLAY_FILE="boards/clear_clocks.overlay;boards/clear_msi.overlay;boards/pll_64_hsi_16.overlay" platform_allow: disco_l475_iot1 nucleo_l4r5zi stm32l562e_dk integration_platforms: - disco_l475_iot1 drivers.stm32_clock_configuration.common_core.sysclksrc_hsi_16: - extra_args: DTC_OVERLAY_FILE="boards/clear_clocks.overlay;boards/clear_msi.overlay;boards/hsi_16.overlay" + extra_args: + DTC_OVERLAY_FILE="boards/clear_clocks.overlay;boards/clear_msi.overlay;boards/hsi_16.overlay" platform_allow: disco_l475_iot1 nucleo_l4r5zi stm32l562e_dk nucleo_wb55rg nucleo_wl55jc integration_platforms: - disco_l475_iot1 drivers.stm32_clock_configuration.common_core.sysclksrc_msi_48: - extra_args: DTC_OVERLAY_FILE="boards/clear_clocks.overlay;boards/clear_msi.overlay;boards/msi_range11.overlay" + extra_args: + DTC_OVERLAY_FILE="boards/clear_clocks.overlay;boards/clear_msi.overlay;boards/msi_range11.overlay" platform_allow: disco_l475_iot1 nucleo_l4r5zi stm32l562e_dk nucleo_wl55jc nucleo_wb55rg integration_platforms: - disco_l475_iot1 drivers.stm32_clock_configuration.common_core.l4_l5.sysclksrc_hse_8.fixup: - extra_args: DTC_OVERLAY_FILE="boards/clear_clocks.overlay;boards/clear_msi.overlay;boards/hse_8.overlay" + extra_args: + DTC_OVERLAY_FILE="boards/clear_clocks.overlay;boards/clear_msi.overlay;boards/hse_8.overlay" platform_allow: disco_l475_iot1 nucleo_l4r5zi stm32l562e_dk harness: ztest harness_config: @@ -37,7 +42,8 @@ tests: integration_platforms: - disco_l475_iot1 drivers.stm32_clock_configuration.common_core.l4_l5.sysclksrc_pll_64_hse_8.fixup: - extra_args: DTC_OVERLAY_FILE="boards/clear_clocks.overlay;boards/clear_msi.overlay;boards/pll_64_hse_8.overlay" + extra_args: + DTC_OVERLAY_FILE="boards/clear_clocks.overlay;boards/clear_msi.overlay;boards/pll_64_hse_8.overlay" platform_allow: disco_l475_iot1 nucleo_l4r5zi stm32l562e_dk harness: ztest harness_config: @@ -86,7 +92,8 @@ tests: extra_args: DTC_OVERLAY_FILE="boards/clear_clocks.overlay;boards/hse_24.overlay" platform_allow: nucleo_g474re drivers.stm32_clock_configuration.common_core.l0_l1.sysclksrc_hse_8: - extra_args: DTC_OVERLAY_FILE="boards/clear_clocks.overlay;boards/clear_msi.overlay;boards/hse_8.overlay" + extra_args: + DTC_OVERLAY_FILE="boards/clear_clocks.overlay;boards/clear_msi.overlay;boards/hse_8.overlay" platform_allow: nucleo_l152re nucleo_l073rz integration_platforms: - nucleo_l152re @@ -151,12 +158,14 @@ tests: integration_platforms: - nucleo_f091rc drivers.stm32_clock_configuration.common_core.f0_f3.sysclksrc_pll_32_hsi_8: - extra_args: DTC_OVERLAY_FILE="boards/clear_f0_f1_f3_clocks.overlay;boards/f0_f3_pll_32_hsi_8.overlay" + extra_args: + DTC_OVERLAY_FILE="boards/clear_f0_f1_f3_clocks.overlay;boards/f0_f3_pll_32_hsi_8.overlay" platform_allow: nucleo_f091rc stm32f3_disco integration_platforms: - nucleo_f091rc drivers.stm32_clock_configuration.common_core.f0_f3.sysclksrc_pll_32_hse_8: - extra_args: DTC_OVERLAY_FILE="boards/clear_f0_f1_f3_clocks.overlay;boards/f0_f3_pll_32_hse_8.overlay" + extra_args: + DTC_OVERLAY_FILE="boards/clear_f0_f1_f3_clocks.overlay;boards/f0_f3_pll_32_hse_8.overlay" platform_allow: nucleo_f091rc stm32f3_disco integration_platforms: - nucleo_f091rc @@ -171,12 +180,14 @@ tests: integration_platforms: - nucleo_f103rb drivers.stm32_clock_configuration.common_core.f1.sysclksrc_pll_64_hsi_8: - extra_args: DTC_OVERLAY_FILE="boards/clear_f0_f1_f3_clocks.overlay;boards/f1_pll_64_hsi_8.overlay" + extra_args: + DTC_OVERLAY_FILE="boards/clear_f0_f1_f3_clocks.overlay;boards/f1_pll_64_hsi_8.overlay" platform_allow: nucleo_f103rb integration_platforms: - nucleo_f103rb drivers.stm32_clock_configuration.common_core.f1.sysclksrc_pll_64_hse_8: - extra_args: DTC_OVERLAY_FILE="boards/clear_f0_f1_f3_clocks.overlay;boards/f1_pll_64_hse_8.overlay" + extra_args: + DTC_OVERLAY_FILE="boards/clear_f0_f1_f3_clocks.overlay;boards/f1_pll_64_hse_8.overlay" platform_allow: nucleo_f103rb integration_platforms: - nucleo_f103rb @@ -191,17 +202,20 @@ tests: integration_platforms: - nucleo_f207zg drivers.stm32_clock_configuration.common_core.f2_f4_f7.sysclksrc_pll_64_hsi_16: - extra_args: DTC_OVERLAY_FILE="boards/clear_f2_f4_f7_clocks.overlay;boards/f2_f4_f7_pll_64_hsi_16.overlay" + extra_args: + DTC_OVERLAY_FILE="boards/clear_f2_f4_f7_clocks.overlay;boards/f2_f4_f7_pll_64_hsi_16.overlay" platform_allow: nucleo_f207zg nucleo_f429zi nucleo_f446re nucleo_f746zg integration_platforms: - nucleo_f207zg drivers.stm32_clock_configuration.common_core.f2_f4_f7.sysclksrc_pll_64_hse_8: - extra_args: DTC_OVERLAY_FILE="boards/clear_f2_f4_f7_clocks.overlay;boards/f2_f4_f7_pll_64_hse_8.overlay" + extra_args: + DTC_OVERLAY_FILE="boards/clear_f2_f4_f7_clocks.overlay;boards/f2_f4_f7_pll_64_hse_8.overlay" platform_allow: nucleo_f207zg nucleo_f429zi nucleo_f446re nucleo_f746zg integration_platforms: - nucleo_f207zg drivers.stm32_clock_configuration.common_core.f2_f4_f7.sysclksrc_pll_100_hsi_16_ahb2: - extra_args: DTC_OVERLAY_FILE="boards/clear_f2_f4_f7_clocks.overlay;boards/f2_f4_f7_pll_100_hsi_16_ahb_2.overlay" + extra_args: + DTC_OVERLAY_FILE="boards/clear_f2_f4_f7_clocks.overlay;boards/f2_f4_f7_pll_100_hsi_16_ahb_2.overlay" platform_allow: nucleo_f207zg nucleo_f429zi nucleo_f446re nucleo_f746zg integration_platforms: - nucleo_f207zg diff --git a/tests/drivers/entropy/api/testcase.yaml b/tests/drivers/entropy/api/testcase.yaml index 879ff73aa24..6a9a7fa2d49 100644 --- a/tests/drivers/entropy/api/testcase.yaml +++ b/tests/drivers/entropy/api/testcase.yaml @@ -8,5 +8,6 @@ tests: tags: driver entropy bluetooth drivers.entropy.psa_crypto: filter: CONFIG_BUILD_WITH_TFM - extra_args: DTC_OVERLAY_FILE=./entropy_psa_crypto.overlay OVERLAY_CONFIG=./entropy_psa_crypto.conf + extra_args: DTC_OVERLAY_FILE=./entropy_psa_crypto.overlay + OVERLAY_CONFIG=./entropy_psa_crypto.conf tags: driver entropy psa-crypto diff --git a/tests/drivers/flash/testcase.yaml b/tests/drivers/flash/testcase.yaml index 8f1e3d9f246..80d51458bf6 100644 --- a/tests/drivers/flash/testcase.yaml +++ b/tests/drivers/flash/testcase.yaml @@ -37,8 +37,9 @@ tests: integration_platforms: - mimxrt1060_evk drivers.flash.stm32: - platform_allow: nucleo_f103rb nucleo_f207zg stm32f3_disco nucleo_f429zi stm32f746g_disco nucleo_g0b1re nucleo_g474re - nucleo_h743zi nucleo_l152re disco_l475_iot1 nucleo_wb55rg nucleo_wl55jc stm32l562e_dk stm32l562e_dk_ns + platform_allow: nucleo_f103rb nucleo_f207zg stm32f3_disco nucleo_f429zi stm32f746g_disco + nucleo_g0b1re nucleo_g474re nucleo_h743zi nucleo_l152re disco_l475_iot1 nucleo_wb55rg + nucleo_wl55jc stm32l562e_dk stm32l562e_dk_ns integration_platforms: - nucleo_f103rb filter: (dt_compat_enabled("st,stm32-flash-controller") or diff --git a/tests/drivers/spi/spi_loopback/testcase.yaml b/tests/drivers/spi/spi_loopback/testcase.yaml index dc2bde9b9ab..a5018f162fc 100644 --- a/tests/drivers/spi/spi_loopback/testcase.yaml +++ b/tests/drivers/spi/spi_loopback/testcase.yaml @@ -1,7 +1,8 @@ common: depends_on: spi tags: drivers spi dma - filter: dt_compat_enabled("test-spi-loopback-slow") and dt_compat_enabled("test-spi-loopback-fast") + filter: dt_compat_enabled("test-spi-loopback-slow") and + dt_compat_enabled("test-spi-loopback-fast") harness: ztest harness_config: fixture: spi_loopback @@ -10,10 +11,12 @@ tests: drivers.spi.loopback.internal: filter: CONFIG_SPI_LOOPBACK_MODE_LOOP drivers.mcux_dspi_dma.loopback: - extra_args: OVERLAY_CONFIG="overlay-mcux-dspi-dma.conf" DTC_OVERLAY_FILE="overlay-mcux-dspi-dma.overlay" + 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: - extra_args: OVERLAY_CONFIG="overlay-sam-spi-dma.conf" DTC_OVERLAY_FILE="overlay-sam-spi-dma.overlay" + 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 diff --git a/tests/drivers/uart/uart_async_api/testcase.yaml b/tests/drivers/uart/uart_async_api/testcase.yaml index 8183322ffcf..a85819dbbb4 100644 --- a/tests/drivers/uart/uart_async_api/testcase.yaml +++ b/tests/drivers/uart/uart_async_api/testcase.yaml @@ -18,7 +18,8 @@ tests: fixture: gpio_loopback extra_args: DTC_OVERLAY_FILE="boards/nrf52840dk_nrf52840.overlay;boards/nrf_uart.overlay" drivers.uart.async_api.rtt: - filter: CONFIG_UART_CONSOLE and CONFIG_SERIAL_SUPPORT_ASYNC and CONFIG_HAS_SEGGER_RTT and not CONFIG_UART_MCUX_LPUART + filter: CONFIG_UART_CONSOLE and CONFIG_SERIAL_SUPPORT_ASYNC and CONFIG_HAS_SEGGER_RTT and + not CONFIG_UART_MCUX_LPUART extra_args: DTC_OVERLAY_FILE=boards/segger_rtt.overlay extra_configs: - CONFIG_USE_SEGGER_RTT=y diff --git a/tests/kernel/threads/tls/testcase.yaml b/tests/kernel/threads/tls/testcase.yaml index d266624fc70..4013067b0fd 100644 --- a/tests/kernel/threads/tls/testcase.yaml +++ b/tests/kernel/threads/tls/testcase.yaml @@ -4,7 +4,8 @@ tests: filter: CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE and CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE kernel.threads.tls.userspace: tags: kernel threads userspace - filter: CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE and CONFIG_ARCH_HAS_USERSPACE and CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE + filter: CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE and CONFIG_ARCH_HAS_USERSPACE and + CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE # ARCMWDT can't handle THREAD_LOCAL_STORAGE with USERSPACE, see #52570 for details toolchain_exclude: arcmwdt extra_configs: diff --git a/tests/kernel/timer/timer_behavior/testcase.yaml b/tests/kernel/timer/timer_behavior/testcase.yaml index 707bd7668de..cc09d91255e 100644 --- a/tests/kernel/timer/timer_behavior/testcase.yaml +++ b/tests/kernel/timer/timer_behavior/testcase.yaml @@ -6,4 +6,5 @@ tests: - mcu # Really want to exclude renode not the physical boards, but no good # way of doing so at the moment. - platform_exclude: hifive1 tflite-micro it8xxx2_evb m2gl025_miv mpfs_icicle hifive_unleashed mps2_an385 mps2_an521_ns + platform_exclude: hifive1 tflite-micro it8xxx2_evb m2gl025_miv mpfs_icicle hifive_unleashed + mps2_an385 mps2_an521_ns diff --git a/tests/lib/cmsis_dsp/bayes/testcase.yaml b/tests/lib/cmsis_dsp/bayes/testcase.yaml index eb9a2849755..e8c59f9f99c 100644 --- a/tests/lib/cmsis_dsp/bayes/testcase.yaml +++ b/tests/lib/cmsis_dsp/bayes/testcase.yaml @@ -1,6 +1,7 @@ tests: libraries.cmsis_dsp.bayes: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -10,7 +11,8 @@ tests: min_flash: 64 min_ram: 32 libraries.cmsis_dsp.bayes.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 diff --git a/tests/lib/cmsis_dsp/complexmath/testcase.yaml b/tests/lib/cmsis_dsp/complexmath/testcase.yaml index 2eca87bbcde..d69799fd29a 100644 --- a/tests/lib/cmsis_dsp/complexmath/testcase.yaml +++ b/tests/lib/cmsis_dsp/complexmath/testcase.yaml @@ -1,6 +1,7 @@ tests: libraries.cmsis_dsp.complexmath: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -10,7 +11,8 @@ tests: min_flash: 128 min_ram: 144 libraries.cmsis_dsp.complexmath.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and + CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 diff --git a/tests/lib/cmsis_dsp/distance/testcase.yaml b/tests/lib/cmsis_dsp/distance/testcase.yaml index 6a904c41875..bdb93de7a0f 100644 --- a/tests/lib/cmsis_dsp/distance/testcase.yaml +++ b/tests/lib/cmsis_dsp/distance/testcase.yaml @@ -1,6 +1,7 @@ tests: libraries.cmsis_dsp.distance: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -10,7 +11,8 @@ tests: min_flash: 64 min_ram: 32 libraries.cmsis_dsp.distance.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 diff --git a/tests/lib/cmsis_dsp/fastmath/testcase.yaml b/tests/lib/cmsis_dsp/fastmath/testcase.yaml index c1bd39a2aa5..9df40ecba63 100644 --- a/tests/lib/cmsis_dsp/fastmath/testcase.yaml +++ b/tests/lib/cmsis_dsp/fastmath/testcase.yaml @@ -1,6 +1,7 @@ tests: libraries.cmsis_dsp.fastmath: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -10,7 +11,8 @@ tests: min_flash: 128 min_ram: 64 libraries.cmsis_dsp.fastmath.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 diff --git a/tests/lib/cmsis_dsp/filtering/testcase.yaml b/tests/lib/cmsis_dsp/filtering/testcase.yaml index 59060391d51..d32d3eb86ae 100644 --- a/tests/lib/cmsis_dsp/filtering/testcase.yaml +++ b/tests/lib/cmsis_dsp/filtering/testcase.yaml @@ -3,11 +3,13 @@ common: tests: libraries.cmsis_dsp.filtering: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX tags: cmsis_dsp skip: true libraries.cmsis_dsp.filtering.biquad: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -20,7 +22,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_FILTERING_BIQUAD=y libraries.cmsis_dsp.filtering.biquad.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 @@ -32,7 +35,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_FILTERING_BIQUAD=y - CONFIG_FPU=y libraries.cmsis_dsp.filtering.decim: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -45,7 +49,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_FILTERING_DECIM=y libraries.cmsis_dsp.filtering.decim.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 @@ -57,7 +62,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_FILTERING_DECIM=y - CONFIG_FPU=y libraries.cmsis_dsp.filtering.fir: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -70,7 +76,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_FILTERING_FIR=y libraries.cmsis_dsp.filtering.fir.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 @@ -82,7 +89,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_FILTERING_FIR=y - CONFIG_FPU=y libraries.cmsis_dsp.filtering.misc: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -95,7 +103,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_FILTERING_MISC=y libraries.cmsis_dsp.filtering.misc.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 diff --git a/tests/lib/cmsis_dsp/interpolation/testcase.yaml b/tests/lib/cmsis_dsp/interpolation/testcase.yaml index 83773d03230..a53cc5dd310 100644 --- a/tests/lib/cmsis_dsp/interpolation/testcase.yaml +++ b/tests/lib/cmsis_dsp/interpolation/testcase.yaml @@ -1,6 +1,7 @@ tests: libraries.cmsis_dsp.interpolation: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -10,7 +11,8 @@ tests: min_flash: 128 min_ram: 64 libraries.cmsis_dsp.interpolation.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and + CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 diff --git a/tests/lib/cmsis_dsp/matrix/testcase.yaml b/tests/lib/cmsis_dsp/matrix/testcase.yaml index 27a1b7cac8e..49dc0c4d0ce 100644 --- a/tests/lib/cmsis_dsp/matrix/testcase.yaml +++ b/tests/lib/cmsis_dsp/matrix/testcase.yaml @@ -1,10 +1,12 @@ tests: libraries.cmsis_dsp.matrix: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX tags: cmsis_dsp skip: true libraries.cmsis_dsp.matrix.unary_q7: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -17,7 +19,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_MATRIX_UNARY_Q7=y libraries.cmsis_dsp.matrix.unary_q7.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 @@ -29,7 +32,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_MATRIX_UNARY_Q7=y - CONFIG_FPU=y libraries.cmsis_dsp.matrix.unary_q15: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -42,7 +46,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_MATRIX_UNARY_Q15=y libraries.cmsis_dsp.matrix.unary_q15.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 @@ -54,7 +59,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_MATRIX_UNARY_Q15=y - CONFIG_FPU=y libraries.cmsis_dsp.matrix.unary_q31: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -67,7 +73,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_MATRIX_UNARY_Q31=y libraries.cmsis_dsp.matrix.unary_q31.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 @@ -79,7 +86,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_MATRIX_UNARY_Q31=y - CONFIG_FPU=y libraries.cmsis_dsp.matrix.unary_f16: - filter: (CONFIG_CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) + filter: (CONFIG_CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and + TOOLCHAIN_HAS_NEWLIB == 1) integration_platforms: - frdm_k64f - sam_e70_xplained @@ -91,7 +99,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_MATRIX_UNARY_F16=y libraries.cmsis_dsp.matrix.unary_f16.fpu: - filter: (CONFIG_CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) + filter: (CONFIG_CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and + CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) integration_platforms: - mps2_an521_remote - mps3_an547 @@ -103,7 +112,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_MATRIX_UNARY_F16=y - CONFIG_FPU=y libraries.cmsis_dsp.matrix.unary_f32: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -116,7 +126,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_MATRIX_UNARY_F32=y libraries.cmsis_dsp.matrix.unary_f32.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 @@ -128,7 +139,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_MATRIX_UNARY_F32=y - CONFIG_FPU=y libraries.cmsis_dsp.matrix.unary_f64: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -141,7 +153,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_MATRIX_UNARY_F64=y libraries.cmsis_dsp.matrix.unary_f64.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 @@ -153,7 +166,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_MATRIX_UNARY_F64=y - CONFIG_FPU=y libraries.cmsis_dsp.matrix.binary_q7: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -167,7 +181,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_MATRIX_BINARY_Q7=y libraries.cmsis_dsp.matrix.binary_q7.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 @@ -180,7 +195,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_MATRIX_BINARY_Q7=y - CONFIG_FPU=y libraries.cmsis_dsp.matrix.binary_q15: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -194,7 +210,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_MATRIX_BINARY_Q15=y libraries.cmsis_dsp.matrix.binary_q15.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 @@ -207,7 +224,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_MATRIX_BINARY_Q15=y - CONFIG_FPU=y libraries.cmsis_dsp.matrix.binary_q31: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -221,7 +239,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_MATRIX_BINARY_Q31=y libraries.cmsis_dsp.matrix.binary_q31.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 @@ -234,7 +253,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_MATRIX_BINARY_Q31=y - CONFIG_FPU=y libraries.cmsis_dsp.matrix.binary_f16: - filter: (CONFIG_CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) + filter: (CONFIG_CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and + TOOLCHAIN_HAS_NEWLIB == 1) integration_platforms: - frdm_k64f - sam_e70_xplained @@ -246,7 +266,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_MATRIX_BINARY_F16=y libraries.cmsis_dsp.matrix.binary_f16.fpu: - filter: (CONFIG_CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) + filter: (CONFIG_CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and + CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) integration_platforms: - mps2_an521_remote - mps3_an547 @@ -258,7 +279,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_MATRIX_BINARY_F16=y - CONFIG_FPU=y libraries.cmsis_dsp.matrix.binary_f32: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -272,7 +294,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_MATRIX_BINARY_F32=y libraries.cmsis_dsp.matrix.binary_f32.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 @@ -285,7 +308,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_MATRIX_BINARY_F32=y - CONFIG_FPU=y libraries.cmsis_dsp.matrix.binary_f64: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -299,7 +323,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_MATRIX_BINARY_F64=y libraries.cmsis_dsp.matrix.binary_f64.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 diff --git a/tests/lib/cmsis_dsp/quaternionmath/testcase.yaml b/tests/lib/cmsis_dsp/quaternionmath/testcase.yaml index 0d01507c67d..21ff06c3762 100644 --- a/tests/lib/cmsis_dsp/quaternionmath/testcase.yaml +++ b/tests/lib/cmsis_dsp/quaternionmath/testcase.yaml @@ -1,6 +1,7 @@ tests: libraries.cmsis_dsp.quaternionmath: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -10,7 +11,8 @@ tests: min_flash: 128 min_ram: 64 libraries.cmsis_dsp.quaternionmath.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and + CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 diff --git a/tests/lib/cmsis_dsp/statistics/testcase.yaml b/tests/lib/cmsis_dsp/statistics/testcase.yaml index 684cfc4051c..72f7ddb42e9 100644 --- a/tests/lib/cmsis_dsp/statistics/testcase.yaml +++ b/tests/lib/cmsis_dsp/statistics/testcase.yaml @@ -1,6 +1,7 @@ tests: libraries.cmsis_dsp.statistics: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -10,7 +11,8 @@ tests: min_flash: 128 min_ram: 64 libraries.cmsis_dsp.statistics.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and + CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 diff --git a/tests/lib/cmsis_dsp/support/testcase.yaml b/tests/lib/cmsis_dsp/support/testcase.yaml index a84d68aaeb2..f0f6780ddb4 100644 --- a/tests/lib/cmsis_dsp/support/testcase.yaml +++ b/tests/lib/cmsis_dsp/support/testcase.yaml @@ -1,6 +1,7 @@ tests: libraries.cmsis_dsp.support: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -10,7 +11,8 @@ tests: min_flash: 128 min_ram: 128 libraries.cmsis_dsp.support.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 diff --git a/tests/lib/cmsis_dsp/svm/testcase.yaml b/tests/lib/cmsis_dsp/svm/testcase.yaml index 792c529cacd..e38fb843943 100644 --- a/tests/lib/cmsis_dsp/svm/testcase.yaml +++ b/tests/lib/cmsis_dsp/svm/testcase.yaml @@ -1,6 +1,7 @@ tests: libraries.cmsis_dsp.svm: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -10,7 +11,8 @@ tests: min_flash: 128 min_ram: 64 libraries.cmsis_dsp.svm.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps2_an521_remote - mps3_an547 diff --git a/tests/lib/cmsis_dsp/transform/testcase.yaml b/tests/lib/cmsis_dsp/transform/testcase.yaml index f5d9afd0783..136192fa211 100644 --- a/tests/lib/cmsis_dsp/transform/testcase.yaml +++ b/tests/lib/cmsis_dsp/transform/testcase.yaml @@ -1,10 +1,12 @@ tests: libraries.cmsis_dsp.transform: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX tags: cmsis_dsp skip: true libraries.cmsis_dsp.transform.cq15: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -17,7 +19,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_CQ15=y libraries.cmsis_dsp.transform.cq15.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps3_an547 tags: cmsis_dsp fpu @@ -28,7 +31,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_CQ15=y - CONFIG_FPU=y libraries.cmsis_dsp.transform.rq15: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -41,7 +45,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_RQ15=y libraries.cmsis_dsp.transform.rq15.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps3_an547 tags: cmsis_dsp fpu @@ -52,7 +57,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_RQ15=y - CONFIG_FPU=y libraries.cmsis_dsp.transform.cq31: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -65,7 +71,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_CQ31=y libraries.cmsis_dsp.transform.cq31.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX tags: cmsis_dsp fpu min_flash: 1024 min_ram: 64 @@ -74,7 +81,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_CQ31=y - CONFIG_FPU=y libraries.cmsis_dsp.transform.rq31: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -87,7 +95,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_RQ31=y libraries.cmsis_dsp.transform.rq31.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX tags: cmsis_dsp fpu min_flash: 1024 min_ram: 64 @@ -96,7 +105,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_RQ31=y - CONFIG_FPU=y libraries.cmsis_dsp.transform.cf16: - filter: (CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) + filter: (CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and + TOOLCHAIN_HAS_NEWLIB == 1) integration_platforms: - frdm_k64f - sam_e70_xplained @@ -108,7 +118,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_CF16=y libraries.cmsis_dsp.transform.cf16.fpu: - filter: (CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) + filter: (CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and + CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) integration_platforms: - mps3_an547 tags: cmsis_dsp fpu @@ -119,7 +130,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_CF16=y - CONFIG_FPU=y libraries.cmsis_dsp.transform.rf16: - filter: (CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) + filter: (CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and + TOOLCHAIN_HAS_NEWLIB == 1) integration_platforms: - frdm_k64f - sam_e70_xplained @@ -131,7 +143,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_RF16=y libraries.cmsis_dsp.transform.rf16.fpu: - filter: (CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) + filter: (CMSIS_DSP_FLOAT16 and (CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and + CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) integration_platforms: - mps3_an547 tags: cmsis_dsp fpu @@ -142,7 +155,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_RF16=y - CONFIG_FPU=y libraries.cmsis_dsp.transform.cf32: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -155,7 +169,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_CF32=y libraries.cmsis_dsp.transform.cf32.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX tags: cmsis_dsp fpu min_flash: 1024 min_ram: 64 @@ -164,7 +179,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_CF32=y - CONFIG_FPU=y libraries.cmsis_dsp.transform.rf32: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -177,7 +193,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_RF32=y libraries.cmsis_dsp.transform.rf32.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX integration_platforms: - mps3_an547 tags: cmsis_dsp fpu @@ -188,7 +205,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_RF32=y - CONFIG_FPU=y libraries.cmsis_dsp.transform.cf64: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -201,7 +219,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_CF64=y libraries.cmsis_dsp.transform.cf64.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX tags: cmsis_dsp fpu min_flash: 1024 min_ram: 160 @@ -210,7 +229,8 @@ tests: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_CF64=y - CONFIG_FPU=y libraries.cmsis_dsp.transform.rf64: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and TOOLCHAIN_HAS_NEWLIB == 1) or + CONFIG_ARCH_POSIX integration_platforms: - frdm_k64f - sam_e70_xplained @@ -223,7 +243,8 @@ tests: extra_configs: - CONFIG_CMSIS_DSP_TEST_TRANSFORM_RF64=y libraries.cmsis_dsp.transform.rf64.fpu: - filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX + filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_CPU_HAS_FPU and + TOOLCHAIN_HAS_NEWLIB == 1) or CONFIG_ARCH_POSIX tags: cmsis_dsp fpu min_flash: 1024 min_ram: 64 diff --git a/tests/posix/common/testcase.yaml b/tests/posix/common/testcase.yaml index 7d84579c6fc..b09f93534a4 100644 --- a/tests/posix/common/testcase.yaml +++ b/tests/posix/common/testcase.yaml @@ -30,7 +30,8 @@ tests: - CONFIG_MAIN_STACK_SIZE=1152 portability.posix.common.tls.newlib: platform_exclude: nsim_sem_mpu_stack_guard ehl_crb lpcxpresso55s06 - filter: TOOLCHAIN_HAS_NEWLIB == 1 and CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE and CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE + filter: TOOLCHAIN_HAS_NEWLIB == 1 and CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE and + CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE extra_configs: - CONFIG_NEWLIB_LIBC=y - CONFIG_THREAD_LOCAL_STORAGE=y diff --git a/tests/posix/fs/testcase.yaml b/tests/posix/fs/testcase.yaml index dba16d6c93f..47bc265d305 100644 --- a/tests/posix/fs/testcase.yaml +++ b/tests/posix/fs/testcase.yaml @@ -18,7 +18,8 @@ tests: - CONFIG_NEWLIB_LIBC=n - CONFIG_THREAD_LOCAL_STORAGE=y portability.posix.fs.tls.newlib: - filter: TOOLCHAIN_HAS_NEWLIB == 1 and CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE and CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE + filter: TOOLCHAIN_HAS_NEWLIB == 1 and CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE and + CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE extra_configs: - CONFIG_NEWLIB_LIBC=y - CONFIG_THREAD_LOCAL_STORAGE=y