This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new 9c5568c2a testing/ltp: Increase Stack Size
9c5568c2a is described below
commit 9c5568c2afb8ae5f4ed8bfc68c07e8e8beba3d4f
Author: Lup Yuen Lee <[email protected]>
AuthorDate: Mon Dec 16 21:54:20 2024 +0800
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 764dda7f7..6fc5d1fdb 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