tests/kernel/test_{fifo,lifo,stack}: filter unified kernel for small memory
As we transition to the unified kernel, we need to check on there being enough memory in said case (nano kernel always had it based on higher granularity filtering with 'kernel = nano'). Change-Id: Ic36c352f06be09407cd3aac74a1dfe73bb2fc61d Signed-off-by: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
This commit is contained in:
parent
f7bb11a54b
commit
43f788a6eb
|
@ -1,3 +1,6 @@
|
|||
[test]
|
||||
tags = core unified_capable
|
||||
kernel = nano
|
||||
# Make sure it has enough memory
|
||||
filter = not ((CONFIG_DEBUG or CONFIG_ASSERT)) and ( CONFIG_SRAM_SIZE >= 32
|
||||
or CONFIG_DCCM_SIZE >= 32 or CONFIG_RAM_SIZE >= 32)
|
||||
|
|
|
@ -1,2 +1,5 @@
|
|||
[test]
|
||||
tags = core unified_capable
|
||||
# Make sure it has enough memory
|
||||
filter = not ((CONFIG_DEBUG or CONFIG_ASSERT)) and ( CONFIG_SRAM_SIZE >= 32
|
||||
or CONFIG_DCCM_SIZE >= 32 or CONFIG_RAM_SIZE >= 32)
|
||||
|
|
|
@ -1,2 +1,5 @@
|
|||
[test]
|
||||
tags = core unified_capable
|
||||
# Make sure it has enough memory
|
||||
filter = not ((CONFIG_DEBUG or CONFIG_ASSERT)) and ( CONFIG_SRAM_SIZE >= 32
|
||||
or CONFIG_DCCM_SIZE >= 32 or CONFIG_RAM_SIZE >= 32)
|
||||
|
|
Loading…
Reference in a new issue