tests: kernel: threads_scheduling: increased stack size to 512 for riscv32 architecture
Otherwise, not passing sanitycheck Change-Id: I6dba149750a7d4266fd52851f7e0b139efdba210 Signed-off-by: Jean-Paul Etienne <fractalclone@gmail.com>
This commit is contained in:
parent
142e3cb0f3
commit
d65dae20e3
1 changed files with 4 additions and 0 deletions
|
@ -20,7 +20,11 @@
|
|||
#include <zephyr.h>
|
||||
#include <ztest.h>
|
||||
|
||||
#if defined(CONFIG_RISCV32)
|
||||
#define STACK_SIZE 512
|
||||
#else
|
||||
#define STACK_SIZE 256
|
||||
#endif
|
||||
|
||||
struct thread_data {
|
||||
k_tid_t tid;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue