zephyr/modules/fff/Kconfig
Yuval Peress 347a297da2 modules: fff: Fix issue with tests being skipped in CI
The filter in the testcase.yaml made it impossible for these to run.
Also, the Kconfig names for the options didn't really make much sense
so they were renamed to avoid conflict.

This fixes an issue found by #36433.

Signed-off-by: Yuval Peress <peress@google.com>
2022-03-22 12:33:58 +01:00

27 lines
638 B
Plaintext

# Copyright (c) 2021 Google LLC
# SPDX-License-Identifier: Apache-2.0
config ZEPHYR_FFF_MODULE
bool
menuconfig FFF_TEST
bool "FFF Test suite"
help
Enable the FFF test suite. This should really only be called from the tests for FFF under
tests/ztest/mock_fff/. It brings in the test sources from the upstream FFF module.
if FFF_TEST
choice FFF_TEST_TYPE
prompt "The type of FFF test to bring in"
config FFF_TEST_TYPE_C
bool "Compile the FFF default C test suite as a zephyr library"
config FFF_TEST_TYPE_GLOBAL_C
bool "Compile the FFF global C test suite as a zephyr library"
endchoice # FFF_TEST_TYPE
endif # FFF_TEST