Skip to content

Commit fea0dd0

Browse files
Matthew MacovskyKyle Kearney
authored andcommitted
Enable TDBStore whitebox test on PSoC 6
1 parent 3541e43 commit fea0dd0

File tree

1 file changed

+6
-6
lines changed
  • features/storage/TESTS/kvstore/tdbstore_whitebox

1 file changed

+6
-6
lines changed

features/storage/TESTS/kvstore/tdbstore_whitebox/main.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ static const char *const res_val2 = "This should surely not be saved as the res
9292
static void white_box_test()
9393
{
9494

95-
#if !defined(TARGET_K64F)
96-
TEST_SKIP_MESSAGE("Kvstore API tests run only on K64F devices");
95+
#if !defined(TARGET_K64F) && !defined(TARGET_MCU_PSOC6)
96+
TEST_SKIP_MESSAGE("Kvstore API tests run only on K64F devices and PSoC 6");
9797
#endif
9898

9999
bd_params_t bd_params[] = {
@@ -334,8 +334,8 @@ static void white_box_test()
334334
static void multi_set_test()
335335
{
336336

337-
#if !defined(TARGET_K64F)
338-
TEST_SKIP_MESSAGE("Kvstore API tests run only on K64F devices");
337+
#if !defined(TARGET_K64F) && !defined(TARGET_MCU_PSOC6)
338+
TEST_SKIP_MESSAGE("Kvstore API tests run only on K64F devices and PSoC 6");
339339
#endif
340340

341341
char *key;
@@ -458,8 +458,8 @@ static void multi_set_test()
458458
static void error_inject_test()
459459
{
460460

461-
#if !defined(TARGET_K64F)
462-
TEST_SKIP_MESSAGE("Kvstore API tests run only on K64F devices");
461+
#if !defined(TARGET_K64F) && !defined(TARGET_MCU_PSOC6)
462+
TEST_SKIP_MESSAGE("Kvstore API tests run only on K64F devices and PSoC 6");
463463
#endif
464464

465465
char *key;

0 commit comments

Comments
 (0)