From ca76f532836aeae2b9e9b68e747de91d1f050180 Mon Sep 17 00:00:00 2001 From: antti Date: Wed, 23 Nov 2016 16:22:34 +0800 Subject: [PATCH] remove fp unit test Kconfig --- components/esp32/test/Kconfig | 9 --------- components/esp32/test/test_fp.c | 2 -- 2 files changed, 11 deletions(-) delete mode 100644 components/esp32/test/Kconfig diff --git a/components/esp32/test/Kconfig b/components/esp32/test/Kconfig deleted file mode 100644 index af5e5b45e7..0000000000 --- a/components/esp32/test/Kconfig +++ /dev/null @@ -1,9 +0,0 @@ -menu "TESTS" - -config FP_TEST_ENABLE - bool "Enable test fp" - default "y" - help - For FPGA single core CPU which has no floating point support, floating point test should be disabled. - -endmenu diff --git a/components/esp32/test/test_fp.c b/components/esp32/test/test_fp.c index 5c2573b227..1b88e9722c 100644 --- a/components/esp32/test/test_fp.c +++ b/components/esp32/test/test_fp.c @@ -4,7 +4,6 @@ #include "freertos/task.h" #include "unity.h" -#if CONFIG_FP_TEST_ENABLE static float addsf(float a, float b) { float result; @@ -192,4 +191,3 @@ TEST_CASE("context switch saves FP registers", "[fp]") } TEST_ASSERT(state.fail == 0); } -#endif