File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
features/storage/TESTS/kvstore Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 30
30
#include " utest.h"
31
31
#include < stdlib.h>
32
32
33
- #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM)
34
- #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels
33
+ #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM) && !defined(TARGET_MCU_PSOC6)
34
+ #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices, Fastmodels, and PSoC 6
35
35
#else
36
36
37
37
#define FSST_TEST_NUM_OF_THREADS 5
Original file line number Diff line number Diff line change 32
32
using namespace utest ::v1;
33
33
using namespace mbed ;
34
34
35
- #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM)
36
- #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels
35
+ #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM) && !defined(TARGET_MCU_PSOC6)
36
+ #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices, Fastmodels, and PSoC 6
37
37
#else
38
38
39
39
static const char data[] = " data" ;
Original file line number Diff line number Diff line change 32
32
using namespace utest ::v1;
33
33
using namespace mbed ;
34
34
35
- #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM)
36
- #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels
35
+ #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM) && !defined(TARGET_MCU_PSOC6)
36
+ #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices, Fastmodels, and PSoC 6
37
37
#else
38
38
39
39
static const char data[] = " data" ;
Original file line number Diff line number Diff line change 34
34
#include < stdio.h>
35
35
#include < algorithm>
36
36
37
- #if (!defined(TARGET_K64F) && !defined(TARGET_ARM_FM)) || !SECURESTORE_ENABLED
38
- #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels . KVStore & SecureStore need to be enabled for this test
37
+ #if (!defined(TARGET_K64F) && !defined(TARGET_ARM_FM)) && !defined(TARGET_MCU_PSOC6) || !SECURESTORE_ENABLED
38
+ #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices, Fastmodels, and PSoC 6 . KVStore & SecureStore need to be enabled for this test
39
39
#else
40
40
41
41
using namespace mbed ;
You can’t perform that action at this time.
0 commit comments