From f0792696b7b43d58622e09cbb3c4fefb1b9c4e1f Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Sat, 21 Dec 2024 10:38:59 +0100 Subject: [PATCH] test: pkg: special cases for native32 only --- tests/pkg/cayenne-lpp/main.c | 2 +- tests/pkg/lora-serialization/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/pkg/cayenne-lpp/main.c b/tests/pkg/cayenne-lpp/main.c index e0f92a9c1e..24e0fc49ba 100644 --- a/tests/pkg/cayenne-lpp/main.c +++ b/tests/pkg/cayenne-lpp/main.c @@ -24,7 +24,7 @@ #include "cayenne_lpp.h" #define TEST_BUFFER1 { 0x03, 0x67, 0x01, 0x10, 0x05, 0x67, 0x00, 0xff } -#if defined(BOARD_NATIVE) +#if defined(BOARD_NATIVE32) #define TEST_BUFFER2 { 0x01, 0x67, 0xFF, 0xD8, \ 0x06, 0x71, 0x04, 0xD1, 0xFB, 0x2F, 0x00, 0x00 } #else diff --git a/tests/pkg/lora-serialization/main.c b/tests/pkg/lora-serialization/main.c index 7986df8a0d..a63d4d30b4 100644 --- a/tests/pkg/lora-serialization/main.c +++ b/tests/pkg/lora-serialization/main.c @@ -23,7 +23,7 @@ #include #include "lora_serialization.h" -#if defined(BOARD_NATIVE) +#if defined(BOARD_NATIVE32) #define TEST_01_EXPECTED { 0x1f, 0x4c, 0x0e, 0x27 } #define TEST_02_EXPECTED { 0x65, 0xa6, 0xfa, 0xfd, \ 0x6a, 0x24, 0x04, 0x09, \