mirror of https://github.com/ARMmbed/mbed-os.git
Update greentea config, header reference
parent
bb14b9ff8f
commit
d956116c36
|
@ -29,3 +29,4 @@
|
||||||
^tools
|
^tools
|
||||||
^UNITTESTS
|
^UNITTESTS
|
||||||
^storage/blockdevice/tests/UNITTESTS
|
^storage/blockdevice/tests/UNITTESTS
|
||||||
|
^storage/kvstore/tests/UNITTESTS
|
||||||
|
|
|
@ -22,15 +22,11 @@
|
||||||
"network-emac",
|
"network-emac",
|
||||||
"flashiap-block-device",
|
"flashiap-block-device",
|
||||||
"system-storage",
|
"system-storage",
|
||||||
"filesystemstore",
|
|
||||||
"SecureStore",
|
"SecureStore",
|
||||||
"storage",
|
"storage",
|
||||||
"kv-map",
|
|
||||||
"direct-access-devicekey",
|
"direct-access-devicekey",
|
||||||
"tdbstore",
|
|
||||||
"kv-config",
|
"kv-config",
|
||||||
"events",
|
"events",
|
||||||
"kv-global-api",
|
|
||||||
"sd",
|
"sd",
|
||||||
"qspif",
|
"qspif",
|
||||||
"spif-driver",
|
"spif-driver",
|
||||||
|
|
|
@ -118,6 +118,9 @@ set(unittest-includes-base
|
||||||
"${PROJECT_SOURCE_DIR}/../storage/filesystem/fat/include"
|
"${PROJECT_SOURCE_DIR}/../storage/filesystem/fat/include"
|
||||||
"${PROJECT_SOURCE_DIR}/../storage/blockdevice/include"
|
"${PROJECT_SOURCE_DIR}/../storage/blockdevice/include"
|
||||||
"${PROJECT_SOURCE_DIR}/../storage/filesystem/include"
|
"${PROJECT_SOURCE_DIR}/../storage/filesystem/include"
|
||||||
|
"${PROJECT_SOURCE_DIR}/../storage/kvstore/include"
|
||||||
|
"${PROJECT_SOURCE_DIR}/../storage/kvstore/kv_config"
|
||||||
|
"${PROJECT_SOURCE_DIR}/../storage/kvstore/kv_config/include"
|
||||||
"${PROJECT_SOURCE_DIR}/../drivers"
|
"${PROJECT_SOURCE_DIR}/../drivers"
|
||||||
"${PROJECT_SOURCE_DIR}/../hal"
|
"${PROJECT_SOURCE_DIR}/../hal"
|
||||||
"${PROJECT_SOURCE_DIR}/../events"
|
"${PROJECT_SOURCE_DIR}/../events"
|
||||||
|
@ -146,7 +149,6 @@ set(unittest-includes-base
|
||||||
"${PROJECT_SOURCE_DIR}/../features/lorawan/system"
|
"${PROJECT_SOURCE_DIR}/../features/lorawan/system"
|
||||||
"${PROJECT_SOURCE_DIR}/../features/mbedtls"
|
"${PROJECT_SOURCE_DIR}/../features/mbedtls"
|
||||||
"${PROJECT_SOURCE_DIR}/../features/mbedtls/inc"
|
"${PROJECT_SOURCE_DIR}/../features/mbedtls/inc"
|
||||||
"${PROJECT_SOURCE_DIR}/../storage/kvstore/conf"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
# Create a list for test suites.
|
# Create a list for test suites.
|
||||||
|
|
|
@ -12,13 +12,6 @@ set(unittest-includes ${unittest-includes}
|
||||||
)
|
)
|
||||||
|
|
||||||
set(unittest-sources
|
set(unittest-sources
|
||||||
../storage/kvstore/global_api/kvstore_global_api.cpp
|
|
||||||
../storage/kvstore/securestore/SecureStore.cpp
|
|
||||||
../storage/kvstore/kv_map/KVMap.cpp
|
|
||||||
../storage/kvstore/tdbstore/TDBStore.cpp
|
|
||||||
../storage/kvstore/direct_access_devicekey/DirectAccessDevicekey.cpp
|
|
||||||
../storage/kvstore/conf/kv_config.cpp
|
|
||||||
../storage/kvstore/filesystemstore/FileSystemStore.cpp
|
|
||||||
../storage/system_storage/SystemStorage.cpp
|
../storage/system_storage/SystemStorage.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "storage/kvstore/conf/kv_config.h"
|
#include "kv_config/kv_config.h"
|
||||||
|
|
||||||
const char *get_filesystemstore_folder_path()
|
const char *get_filesystemstore_folder_path()
|
||||||
{
|
{
|
||||||
|
|
|
@ -19,10 +19,10 @@
|
||||||
#if DEVICEKEY_ENABLED
|
#if DEVICEKEY_ENABLED
|
||||||
#include "mbedtls/cmac.h"
|
#include "mbedtls/cmac.h"
|
||||||
#include "mbedtls/platform.h"
|
#include "mbedtls/platform.h"
|
||||||
#include "storage/kvstore/include/KVStore.h"
|
#include "kvstore/KVStore.h"
|
||||||
#include "storage/kvstore/tdbstore/TDBStore.h"
|
#include "kvstore/TDBStore.h"
|
||||||
#include "storage/kvstore/kv_map/KVMap.h"
|
#include "kvstore/KVMap.h"
|
||||||
#include "storage/kvstore/conf/kv_config.h"
|
#include "kv_config/kv_config.h"
|
||||||
#include "mbed_wait_api.h"
|
#include "mbed_wait_api.h"
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include "platform/mbed_error.h"
|
#include "platform/mbed_error.h"
|
||||||
|
|
0
storage/kvstore/direct_access_devicekey/tests/TESTS/direct_access_devicekey/direct_access_devicekey_tdb/main.cpp
Executable file → Normal file
0
storage/kvstore/direct_access_devicekey/tests/TESTS/direct_access_devicekey/direct_access_devicekey_tdb/main.cpp
Executable file → Normal file
Loading…
Reference in New Issue