C library testing is mainly there to support what is necessary to support Zephyr. We do test a variety of libcs currently, which is where YAML comes in handy. However, the main libc testsuite can be overkill for testing some things, and might not be suitable for testing optional features. Create a 'common' subdirectory for common libc tests. Signed-off-by: Christopher Friedt <cfriedt@meta.com>
16 lines
476 B
Text
16 lines
476 B
Text
# 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.
|