Skip to content

Commit 870bebc

Browse files
author
Oren Cohen
committed
fix mbedmicro-rtos-mbed tests
1 parent b69e03f commit 870bebc

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

TESTS/mbedmicro-rtos-mbed/mail/main.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ using namespace utest::v1;
3333
#define THREAD_STACK_SIZE 512
3434
#elif defined(__ARM_FM)
3535
#define THREAD_STACK_SIZE 512
36+
#elif defined(TARGET_FUTURE_SEQUANA_PSA)
37+
#define THREAD_STACK_SIZE 512
3638
#else
3739
#define THREAD_STACK_SIZE 320 /* larger stack cause out of heap memory on some 16kB RAM boards in multi thread test*/
3840
#endif

TESTS/mbedmicro-rtos-mbed/malloc/main.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ volatile bool thread_should_continue = true;
4141
#define THREAD_STACK_SIZE 512
4242
#elif defined(__ARM_FM)
4343
#define THREAD_STACK_SIZE 512
44+
#elif defined(TARGET_FUTURE_SEQUANA_PSA)
45+
#define THREAD_STACK_SIZE 512
4446
#else
4547
#define THREAD_STACK_SIZE 256
4648
#endif

TESTS/mbedmicro-rtos-mbed/threads/main.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636
#define PARALLEL_THREAD_STACK_SIZE 512
3737
#elif defined(__ARM_FM)
3838
#define PARALLEL_THREAD_STACK_SIZE 512
39+
#elif defined(TARGET_FUTURE_SEQUANA_PSA)
40+
#define PARALLEL_THREAD_STACK_SIZE 512
3941
#else
4042
#define PARALLEL_THREAD_STACK_SIZE 384
4143
#endif

0 commit comments

Comments
 (0)