From 7c718ae34bdaf2a28a52c7a098b72f45b336c247 Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Fri, 29 Sep 2023 10:38:43 +0200 Subject: [PATCH] tests/unittests: blacklist LLVM on native This test is randomly failing CI, so disable it. --- tests/unittests/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/unittests/Makefile b/tests/unittests/Makefile index 2d3fb7472f..b71e0eea05 100644 --- a/tests/unittests/Makefile +++ b/tests/unittests/Makefile @@ -13,6 +13,12 @@ ifeq (, $(UNIT_TESTS)) endif endif +ifeq (llvm,$(TOOLCHAIN)) + # the floating point exception bug is more likely to trigger when build + # with LLVM, so we just disable LLVM on native as a work around + TEST_ON_CI_BLACKLIST += native +endif + DISABLE_MODULE += auto_init auto_init_% # boards using stdio via CDC ACM require auto_init to automatically