Update greentea config, header reference

pull/13307/head
Rajkumar Kanagaraj 2020-07-17 12:17:43 -07:00
parent bb14b9ff8f
commit d956116c36
7 changed files with 9 additions and 17 deletions

View File

@ -29,3 +29,4 @@
^tools
^UNITTESTS
^storage/blockdevice/tests/UNITTESTS
^storage/kvstore/tests/UNITTESTS

View File

@ -22,15 +22,11 @@
"network-emac",
"flashiap-block-device",
"system-storage",
"filesystemstore",
"SecureStore",
"storage",
"kv-map",
"direct-access-devicekey",
"tdbstore",
"kv-config",
"events",
"kv-global-api",
"sd",
"qspif",
"spif-driver",

View File

@ -118,6 +118,9 @@ set(unittest-includes-base
"${PROJECT_SOURCE_DIR}/../storage/filesystem/fat/include"
"${PROJECT_SOURCE_DIR}/../storage/blockdevice/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}/../hal"
"${PROJECT_SOURCE_DIR}/../events"
@ -146,7 +149,6 @@ set(unittest-includes-base
"${PROJECT_SOURCE_DIR}/../features/lorawan/system"
"${PROJECT_SOURCE_DIR}/../features/mbedtls"
"${PROJECT_SOURCE_DIR}/../features/mbedtls/inc"
"${PROJECT_SOURCE_DIR}/../storage/kvstore/conf"
)
# Create a list for test suites.

View File

@ -12,13 +12,6 @@ set(unittest-includes ${unittest-includes}
)
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
)

View File

@ -15,7 +15,7 @@
* limitations under the License.
*/
#include "storage/kvstore/conf/kv_config.h"
#include "kv_config/kv_config.h"
const char *get_filesystemstore_folder_path()
{

View File

@ -19,10 +19,10 @@
#if DEVICEKEY_ENABLED
#include "mbedtls/cmac.h"
#include "mbedtls/platform.h"
#include "storage/kvstore/include/KVStore.h"
#include "storage/kvstore/tdbstore/TDBStore.h"
#include "storage/kvstore/kv_map/KVMap.h"
#include "storage/kvstore/conf/kv_config.h"
#include "kvstore/KVStore.h"
#include "kvstore/TDBStore.h"
#include "kvstore/KVMap.h"
#include "kv_config/kv_config.h"
#include "mbed_wait_api.h"
#include <stdlib.h>
#include "platform/mbed_error.h"