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:
Jean-Paul Etienne 2017-01-11 00:24:31 +01:00 committed by Andrew Boie
commit d65dae20e3

View file

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