Skip to content

Commit e37f819

Browse files
dcpleungMaureenHelm
authored andcommitted
samples: cmsis_rtos_v1: philosophers: skip up_squared
The up_squared board suffers the same issue as qemu_x86_64 where a bigger stack is needed but CMSIS has a limit on how big the stack can be. This results in stack overflow. So exclude up_squared in samples.yaml. Fixes #28552 Signed-off-by: Daniel Leung <[email protected]>
1 parent f6bc89c commit e37f819

File tree

1 file changed

+4
-1
lines changed
  • samples/portability/cmsis_rtos_v1/philosophers

1 file changed

+4
-1
lines changed

samples/portability/cmsis_rtos_v1/philosophers/sample.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ common:
55
tags: cmsis_rtos
66
min_ram: 32
77
min_flash: 34
8-
platform_exclude: qemu_xtensa qemu_x86_64
8+
# qemu_x86_64 and up_squared need bigger stack
9+
# but CMSIS limits the stack size, resulting
10+
# in stack overflow.
11+
platform_exclude: qemu_xtensa qemu_x86_64 up_squared
912
harness: console
1013
harness_config:
1114
type: multi_line

0 commit comments

Comments
 (0)