tests: app_kernel: limit to systems with >32K of memory

We need a bit over 32k of memory to build/run the app_kernel benchmarks.

Change-Id: Iddfeb073f8ea87dc6323775a288b83efa88fdaea
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2017-04-14 16:12:57 -05:00
commit ab8a3b2c0d

View file

@ -4,4 +4,4 @@ arch_whitelist = x86 arm
# On my machine, takes about 110 to run, 180 to be safe
timeout = 300
slow = True
filter = ( CONFIG_SRAM_SIZE > 8 or CONFIG_DCCM_SIZE > 8 or CONFIG_RAM_SIZE > 8 )
filter = ( CONFIG_SRAM_SIZE > 32 or CONFIG_DCCM_SIZE > 32 or CONFIG_RAM_SIZE > 32 )