Skip to content

Commit

Permalink
Enable some of the kvstore tests for PSoC 6 MCUs
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Macovsky authored and Kyle Kearney committed Nov 12, 2019
1 parent 2154948 commit a1c7403
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions features/storage/TESTS/kvstore/filesystemstore_tests/main.cpp
Expand Up @@ -30,8 +30,8 @@
#include "utest.h"
#include <stdlib.h>

#if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM)
#error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels
#if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM) && !defined(TARGET_MCU_PSOC6)
#error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices, Fastmodels, and PSoC 6
#else

#define FSST_TEST_NUM_OF_THREADS 5
Expand Down
4 changes: 2 additions & 2 deletions features/storage/TESTS/kvstore/general_tests_phase_1/main.cpp
Expand Up @@ -32,8 +32,8 @@
using namespace utest::v1;
using namespace mbed;

#if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM)
#error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels
#if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM) && !defined(TARGET_MCU_PSOC6)
#error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices, Fastmodels, and PSoC 6
#else

static const char data[] = "data";
Expand Down
4 changes: 2 additions & 2 deletions features/storage/TESTS/kvstore/general_tests_phase_2/main.cpp
Expand Up @@ -32,8 +32,8 @@
using namespace utest::v1;
using namespace mbed;

#if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM)
#error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels
#if !defined(TARGET_K64F) && !defined(TARGET_ARM_FM) && !defined(TARGET_MCU_PSOC6)
#error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices, Fastmodels, and PSoC 6
#else

static const char data[] = "data";
Expand Down
4 changes: 2 additions & 2 deletions features/storage/TESTS/kvstore/securestore_whitebox/main.cpp
Expand Up @@ -34,8 +34,8 @@
#include <stdio.h>
#include <algorithm>

#if (!defined(TARGET_K64F) && !defined(TARGET_ARM_FM)) || !SECURESTORE_ENABLED
#error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices and Fastmodels. KVStore & SecureStore need to be enabled for this test
#if (!defined(TARGET_K64F) && !defined(TARGET_ARM_FM)) && !defined(TARGET_MCU_PSOC6) || !SECURESTORE_ENABLED
#error [NOT_SUPPORTED] Kvstore API tests run only on K64F devices, Fastmodels, and PSoC 6. KVStore & SecureStore need to be enabled for this test
#else

using namespace mbed;
Expand Down

0 comments on commit a1c7403

Please sign in to comment.