From 887729409fb64d4c54b18d247e37029b78d90107 Mon Sep 17 00:00:00 2001 From: Lup Yuen Lee Date: Mon, 16 Dec 2024 21:54:20 +0800 Subject: [PATCH] testing/ltp: Increase Stack Size Inside CI Build risc-v-05: `rv-virt:citest` fails with a Stack Overflow at ltp_interfaces_pthread_barrierattr_init_2_1: - https://github.com/apache/nuttx/issues/15170 This PR doubles the Stack Size for `testing/ltp` (from 4096 bytes to 8192), so that `rv-virt:citest` completes successfully. --- testing/ltp/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/ltp/Kconfig b/testing/ltp/Kconfig index 764dda7f701..6fc5d1fdb72 100644 --- a/testing/ltp/Kconfig +++ b/testing/ltp/Kconfig @@ -13,6 +13,6 @@ if TESTING_LTP config TESTING_LTP_STACKSIZE int "Linux Test Project stack size" - default 4096 + default 8192 endif #TESTING_LTP