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>
8 lines
204 B
CMake
8 lines
204 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(test_settings_nvs_raw)
|
|
|
|
add_subdirectory(./src nvs_test_bindir)
|