tests: posix: getopt: hifive1: reduce `MIN_REQUIRED_HEAP_SIZE` to 1024

This commit reduces `CONFIG_NEWLIB_LIBC_MIN_REQUIRED_HEAP_SIZE` from
2048 to 1024 for the SiFive HiFive1 board.

Otherwise, the test fails on the following assert from Newlib:
memory space available for newlib heap is less than the minimum required
size specified by CONFIG_NEWLIB_LIBC_MIN_REQUIRED_HEAP_SIZE

Signed-off-by: Patryk Koscik <pkoscik@antmicro.com>
This commit is contained in:
Patryk Koscik 2024-06-26 18:33:01 +02:00 committed by Alberto Escolar
parent a2dd9a4ea5
commit 65a80d5bc2
1 changed files with 1 additions and 1 deletions

View File

@ -1 +1 @@
CONFIG_NEWLIB_LIBC_MIN_REQUIRED_HEAP_SIZE=2048
CONFIG_NEWLIB_LIBC_MIN_REQUIRED_HEAP_SIZE=1024