File tree Expand file tree Collapse file tree 7 files changed +9
-17
lines changed
features/device_key/source
storage/kvstore/direct_access_devicekey/tests/TESTS/direct_access_devicekey/direct_access_devicekey_tdb Expand file tree Collapse file tree 7 files changed +9
-17
lines changed Original file line number Diff line number Diff line change 29
29
^tools
30
30
^UNITTESTS
31
31
^storage/blockdevice/tests/UNITTESTS
32
+ ^storage/kvstore/tests/UNITTESTS
Original file line number Diff line number Diff line change 22
22
" network-emac" ,
23
23
" flashiap-block-device" ,
24
24
" system-storage" ,
25
- " filesystemstore" ,
26
25
" SecureStore" ,
27
26
" storage" ,
28
- " kv-map" ,
29
27
" direct-access-devicekey" ,
30
- " tdbstore" ,
31
28
" kv-config" ,
32
29
" events" ,
33
- " kv-global-api" ,
34
30
" sd" ,
35
31
" qspif" ,
36
32
" spif-driver" ,
Original file line number Diff line number Diff line change @@ -118,6 +118,9 @@ set(unittest-includes-base
118
118
"${PROJECT_SOURCE_DIR} /../storage/filesystem/fat/include"
119
119
"${PROJECT_SOURCE_DIR} /../storage/blockdevice/include"
120
120
"${PROJECT_SOURCE_DIR} /../storage/filesystem/include"
121
+ "${PROJECT_SOURCE_DIR} /../storage/kvstore/include"
122
+ "${PROJECT_SOURCE_DIR} /../storage/kvstore/kv_config"
123
+ "${PROJECT_SOURCE_DIR} /../storage/kvstore/kv_config/include"
121
124
"${PROJECT_SOURCE_DIR} /../drivers"
122
125
"${PROJECT_SOURCE_DIR} /../hal"
123
126
"${PROJECT_SOURCE_DIR} /../events"
@@ -146,7 +149,6 @@ set(unittest-includes-base
146
149
"${PROJECT_SOURCE_DIR} /../features/lorawan/system"
147
150
"${PROJECT_SOURCE_DIR} /../features/mbedtls"
148
151
"${PROJECT_SOURCE_DIR} /../features/mbedtls/inc"
149
- "${PROJECT_SOURCE_DIR} /../storage/kvstore/conf"
150
152
)
151
153
152
154
# Create a list for test suites.
Original file line number Diff line number Diff line change @@ -12,13 +12,6 @@ set(unittest-includes ${unittest-includes}
12
12
)
13
13
14
14
set (unittest-sources
15
- ../storage/kvstore/global_api/kvstore_global_api.cpp
16
- ../storage/kvstore/securestore/SecureStore.cpp
17
- ../storage/kvstore/kv_map/KVMap.cpp
18
- ../storage/kvstore/tdbstore/TDBStore.cpp
19
- ../storage/kvstore/direct_access_devicekey/DirectAccessDevicekey.cpp
20
- ../storage/kvstore/conf/kv_config.cpp
21
- ../storage/kvstore/filesystemstore/FileSystemStore.cpp
22
15
../storage/system_storage/SystemStorage.cpp
23
16
)
24
17
Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
- #include " storage/kvstore/conf /kv_config.h"
18
+ #include " kv_config /kv_config.h"
19
19
20
20
const char *get_filesystemstore_folder_path ()
21
21
{
Original file line number Diff line number Diff line change 19
19
#if DEVICEKEY_ENABLED
20
20
#include " mbedtls/cmac.h"
21
21
#include " mbedtls/platform.h"
22
- #include " storage/ kvstore/include /KVStore.h"
23
- #include " storage/ kvstore/tdbstore /TDBStore.h"
24
- #include " storage/ kvstore/kv_map /KVMap.h"
25
- #include " storage/kvstore/conf /kv_config.h"
22
+ #include " kvstore/KVStore.h"
23
+ #include " kvstore/TDBStore.h"
24
+ #include " kvstore/KVMap.h"
25
+ #include " kv_config /kv_config.h"
26
26
#include " mbed_wait_api.h"
27
27
#include < stdlib.h>
28
28
#include " platform/mbed_error.h"
You can’t perform that action at this time.
0 commit comments