zephyr/tests/lib/c_lib/Kconfig
Christopher Friedt e08f84ab0b tests: lib: c_libc: tests for strerror, strerror_r
Add tests for strerror() and strerror_r()

Signed-off-by: Christopher Friedt <cfriedt@fb.com>
2022-07-04 22:53:36 +02:00

17 lines
476 B
Plaintext

# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2022 Meta
mainmenu "Strerror test parameters"
source "Kconfig.zephyr"
config MINIMAL_LIBC_DISABLE_STRING_ERROR_TABLE
depends on MINIMAL_LIBC
bool
default y if !MINIMAL_LIBC_STRING_ERROR_TABLE
default n if MINIMAL_LIBC_STRING_ERROR_TABLE
help
This option is only here to simplify conditional expressions
in test_strerror.c rather than inverting logic for the
global MINIMAL_LIBC_STRING_ERROR_TABLE option.