tests: lib: spsc_pbuf: Do not run test with cache
Test was using a configuration which enforces cache management in the packet buffer. However it shall not be used if producer and consumer is the same core. Testing this configuration on a single core does not make sense as it actually fails on cores with data cache. Making this configuration build_only so it is checked against compilation errors. Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no>
This commit is contained in:
parent
0bb25d2e17
commit
ce157c689d
1 changed files with 4 additions and 3 deletions
|
|
@ -9,9 +9,10 @@ tests:
|
|||
libraries.spsc_pbuf.cache:
|
||||
integration_platforms:
|
||||
- native_sim
|
||||
# Exclude platform which does not link with cache functions
|
||||
platform_exclude: ast1030_evb
|
||||
timeout: 120
|
||||
# This configuration only make sense for interprocessor data sharing so
|
||||
# configuration can only be verified against compilation errors on a single core.
|
||||
platform_allow: native_sim
|
||||
build_only: true
|
||||
extra_configs:
|
||||
- CONFIG_SPSC_PBUF_CACHE_ALWAYS=y
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue