Tests: enable kvstore test for Fastmodel for test code coverage

pull/10619/head
Qinghao Shi 2019-06-06 18:41:16 +01:00
parent 07c3d90a5c
commit 81c96a785d
4 changed files with 8 additions and 8 deletions

View File

@ -27,8 +27,8 @@
#include "utest.h" #include "utest.h"
#include <stdlib.h> #include <stdlib.h>
#if !defined(TARGET_K64F) #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM)
#error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels
#endif #endif
#define FSST_TEST_NUM_OF_THREADS 5 #define FSST_TEST_NUM_OF_THREADS 5

View File

@ -29,8 +29,8 @@
using namespace utest::v1; using namespace utest::v1;
using namespace mbed; using namespace mbed;
#if !defined(TARGET_K64F) #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM)
#error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels
#endif #endif
static const char data[] = "data"; static const char data[] = "data";

View File

@ -29,8 +29,8 @@
using namespace utest::v1; using namespace utest::v1;
using namespace mbed; using namespace mbed;
#if !defined(TARGET_K64F) #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM)
#error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels
#endif #endif
static const char data[] = "data"; static const char data[] = "data";

View File

@ -34,8 +34,8 @@
#include <stdio.h> #include <stdio.h>
#include <algorithm> #include <algorithm>
#if !defined(TARGET_K64F) #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM)
#error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels
#endif #endif
#if !SECURESTORE_ENABLED #if !SECURESTORE_ENABLED