27 lines
614 B
Plaintext
27 lines
614 B
Plaintext
|
# Copyright (c) 2021 Google LLC
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
config ZEPHYR_FFF_MODULE
|
||
|
bool
|
||
|
|
||
|
config 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
|
||
|
prompt "The type of FFF test to bring in"
|
||
|
|
||
|
config FFF_TEST_C
|
||
|
bool "Compile the FFF default C test suite as a zephyr library"
|
||
|
|
||
|
config FFF_TEST_GLOBAL_C
|
||
|
bool "Compile the FFF global C test suite as a zephyr library"
|
||
|
|
||
|
endchoice # FFF_TEST
|
||
|
|
||
|
endif # FFF_TEST
|