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 27
27
#include " utest.h"
28
28
#include < stdlib.h>
29
29
30
- #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM)
31
- #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels
30
+ #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM) && !defined(TARGET_MCU_PSOC6)
31
+ #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices, Fastmodels, and PSoC 6
32
32
#else
33
33
34
34
#define FSST_TEST_NUM_OF_THREADS 5
Original file line number Diff line number Diff line change 29
29
using namespace utest ::v1;
30
30
using namespace mbed ;
31
31
32
- #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM)
33
- #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels
32
+ #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM) && !defined(TARGET_MCU_PSOC6)
33
+ #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices, Fastmodels, and PSoC 6
34
34
#else
35
35
36
36
static const char data[] = " data" ;
Original file line number Diff line number Diff line change 29
29
using namespace utest ::v1;
30
30
using namespace mbed ;
31
31
32
- #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM)
33
- #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels
32
+ #if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM) && !defined(TARGET_MCU_PSOC6)
33
+ #error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices, Fastmodels, and PSoC 6
34
34
#else
35
35
36
36
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