This feature is not used in most tests, as there is no logic in C code that utilizes `#ifdef TEST_x` statement. The only test that does that is `tests/subsys/settings/fcb/` where `#ifdef TEST_LONG` is used, so leave that test case untouched. Signed-off-by: Marcin Niestroj <m.niestroj@emb.dev>
11 lines
302 B
CMake
11 lines
302 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(functional_nvs)
|
|
|
|
# The code is in the library common to several tests.
|
|
target_sources(app PRIVATE settings_test_nvs.c)
|
|
|
|
add_subdirectory(../src func_test_bindir)
|