Commit ffa622b5 authored by Marcin Niestroj's avatar Marcin Niestroj Committed by Carles Cufi
Browse files

tests: settings: file: merge file_littlefs



There is little point in keeping separate:
 * tests/subsys/settings/file
 * tests/subsys/settings/file_littlefs

directories, `file_littlefs` is just a thin layer used to setup test suites
for tests implemented in `file` directory.

Merge both directories together. Support for new FS can be added by simply
adding:
 * new `settings_setup_<FS_OF_CHOICE>.c` which implements
   `config_setup_fs()` function
 * expanding `testcase.yaml` to add new tests with
   `CONFIG_FILE_SYSTEM_<FS_OF_CHOICE>=y` extra config option

Signed-off-by: default avatarMarcin Niestroj <m.niestroj@emb.dev>
parent ba4cea40
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3,6 +3,6 @@

cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(littlefs_raw)
project(settings_file_raw)

add_subdirectory(./src littlefs_test_bindir)
add_subdirectory(src)
Loading