Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: improve filtering for cmsis_dsp/_nn #81443

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/lib/cmsis_dsp/bayes/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
common:
arch_allow:
- arm
- posix
tests:
libraries.cmsis_dsp.bayes:
filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_FULL_LIBC_SUPPORTED
Expand Down
4 changes: 4 additions & 0 deletions tests/lib/cmsis_dsp/complexmath/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
common:
arch_allow:
- arm
- posix
tests:
libraries.cmsis_dsp.complexmath:
filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_FULL_LIBC_SUPPORTED
Expand Down
4 changes: 4 additions & 0 deletions tests/lib/cmsis_dsp/distance/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
common:
arch_allow:
- arm
- posix
tests:
libraries.cmsis_dsp.distance:
filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_FULL_LIBC_SUPPORTED
Expand Down
4 changes: 4 additions & 0 deletions tests/lib/cmsis_dsp/fastmath/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
common:
arch_allow:
- arm
- posix
tests:
libraries.cmsis_dsp.fastmath:
filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_FULL_LIBC_SUPPORTED
Expand Down
4 changes: 3 additions & 1 deletion tests/lib/cmsis_dsp/filtering/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
common:
toolchain_exclude: llvm

arch_allow:
- arm
- posix
tests:
libraries.cmsis_dsp.filtering:
filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_FULL_LIBC_SUPPORTED
Expand Down
4 changes: 4 additions & 0 deletions tests/lib/cmsis_dsp/interpolation/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
common:
arch_allow:
- arm
- posix
tests:
libraries.cmsis_dsp.interpolation:
filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_FULL_LIBC_SUPPORTED
Expand Down
4 changes: 4 additions & 0 deletions tests/lib/cmsis_dsp/matrix/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
common:
arch_allow:
- arm
- posix
tests:
libraries.cmsis_dsp.matrix:
filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_FULL_LIBC_SUPPORTED
Expand Down
4 changes: 4 additions & 0 deletions tests/lib/cmsis_dsp/quaternionmath/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
common:
arch_allow:
- arm
- posix
tests:
libraries.cmsis_dsp.quaternionmath:
filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_FULL_LIBC_SUPPORTED
Expand Down
4 changes: 4 additions & 0 deletions tests/lib/cmsis_dsp/statistics/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
common:
arch_allow:
- arm
- posix
tests:
libraries.cmsis_dsp.statistics:
filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M)
Expand Down
4 changes: 4 additions & 0 deletions tests/lib/cmsis_dsp/support/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
common:
arch_allow:
- arm
- posix
tests:
libraries.cmsis_dsp.support:
filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_FULL_LIBC_SUPPORTED
Expand Down
4 changes: 4 additions & 0 deletions tests/lib/cmsis_dsp/svm/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
common:
arch_allow:
- arm
- posix
tests:
libraries.cmsis_dsp.svm:
filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_FULL_LIBC_SUPPORTED
Expand Down
4 changes: 4 additions & 0 deletions tests/lib/cmsis_dsp/transform/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
common:
arch_allow:
- arm
- posix
tests:
libraries.cmsis_dsp.transform:
filter: ((CONFIG_CPU_AARCH32_CORTEX_R or CONFIG_CPU_CORTEX_M) and CONFIG_FULL_LIBC_SUPPORTED
Expand Down
2 changes: 2 additions & 0 deletions tests/lib/cmsis_nn/testcase.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
tests:
libraries.cmsis_nn:
arch_allow:
- arm
filter: CONFIG_CPU_CORTEX_M and CONFIG_FULL_LIBC_SUPPORTED
integration_platforms:
- frdm_k64f
Expand Down
Loading