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 <stdlib.h>
#if !defined(TARGET_K64F)
#error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices
#if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM)
#error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels
#endif
#define FSST_TEST_NUM_OF_THREADS 5

View File

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

View File

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

View File

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