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:
Inaky Perez-Gonzalez 2016-11-01 10:30:10 -07:00
parent f7bb11a54b
commit 43f788a6eb
3 changed files with 9 additions and 0 deletions

View file

@ -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)

View file

@ -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)

View file

@ -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)