This is an automated email from the ASF dual-hosted git repository. pkarashchenko pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git
commit 07b642ae8d2b7a0907a4d07214b7fd411383e7cc Author: Masayuki Ishikawa <[email protected]> AuthorDate: Sat Oct 15 10:18:58 2022 +0900 boards: qemu-intel64: Fix pthread_attr_setstacksize failed in ostest Summary: - This commit adjusts CONFIG_TESTING_OSTEST_STACKSIZE to fix pthread_attr_setstacksize failed error in ostest Impact: - None Testing: - Tested with ostest Signed-off-by: Masayuki Ishikawa <[email protected]> --- boards/x86_64/intel64/qemu-intel64/configs/nsh/defconfig | 1 + boards/x86_64/intel64/qemu-intel64/configs/ostest/defconfig | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/boards/x86_64/intel64/qemu-intel64/configs/nsh/defconfig b/boards/x86_64/intel64/qemu-intel64/configs/nsh/defconfig index ac4caa9bcc..cc5f5d72ff 100644 --- a/boards/x86_64/intel64/qemu-intel64/configs/nsh/defconfig +++ b/boards/x86_64/intel64/qemu-intel64/configs/nsh/defconfig @@ -57,4 +57,5 @@ CONFIG_START_YEAR=2011 CONFIG_SYSTEM_NSH=y CONFIG_SYSTEM_TIME64=y CONFIG_TESTING_OSTEST=y +CONFIG_TESTING_OSTEST_STACKSIZE=4194304 CONFIG_USEC_PER_TICK=1 diff --git a/boards/x86_64/intel64/qemu-intel64/configs/ostest/defconfig b/boards/x86_64/intel64/qemu-intel64/configs/ostest/defconfig index 4d682859e8..dcd95a1fe8 100644 --- a/boards/x86_64/intel64/qemu-intel64/configs/ostest/defconfig +++ b/boards/x86_64/intel64/qemu-intel64/configs/ostest/defconfig @@ -48,5 +48,5 @@ CONFIG_START_MONTH=3 CONFIG_START_YEAR=2011 CONFIG_SYSTEM_TIME64=y CONFIG_TESTING_OSTEST=y -CONFIG_TESTING_OSTEST_STACKSIZE=4149304 +CONFIG_TESTING_OSTEST_STACKSIZE=4194304 CONFIG_USEC_PER_TICK=1
