mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-10-17 15:32:21 +08:00

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.
19 lines
383 B
Plaintext
19 lines
383 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config TESTING_LTP
|
|
tristate "Linux Test Project"
|
|
default n
|
|
---help---
|
|
Enable support for the Linux Test Project(LTP) framework
|
|
|
|
if TESTING_LTP
|
|
|
|
config TESTING_LTP_STACKSIZE
|
|
int "Linux Test Project stack size"
|
|
default 8192
|
|
|
|
endif #TESTING_LTP
|