From 96d76125b434bc7bba89d94b6d2c0263e6eff84e Mon Sep 17 00:00:00 2001 From: MrKevinWeiss Date: Tue, 1 Aug 2023 07:56:15 +0200 Subject: [PATCH] tests/pkg/lora-serialization: Remove clang condition It seems like the differences between float handling in clang vs gnu are resolved. This condition now makes tests fail so it should be removed... --- tests/pkg/lora-serialization/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pkg/lora-serialization/main.c b/tests/pkg/lora-serialization/main.c index f0cac21bc8..7986df8a0d 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) && !defined(__clang__) +#if defined(BOARD_NATIVE) #define TEST_01_EXPECTED { 0x1f, 0x4c, 0x0e, 0x27 } #define TEST_02_EXPECTED { 0x65, 0xa6, 0xfa, 0xfd, \ 0x6a, 0x24, 0x04, 0x09, \