]> granicus.if.org Git - esp-idf/commitdiff
remove fp unit test Kconfig
authorantti <antti@espressif.com>
Wed, 23 Nov 2016 08:22:34 +0000 (16:22 +0800)
committerantti <antti@espressif.com>
Wed, 23 Nov 2016 08:22:34 +0000 (16:22 +0800)
components/esp32/test/Kconfig [deleted file]
components/esp32/test/test_fp.c

diff --git a/components/esp32/test/Kconfig b/components/esp32/test/Kconfig
deleted file mode 100644 (file)
index af5e5b4..0000000
+++ /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
index 5c2573b2277393de4a89847643481c2e898d1d4f..1b88e9722c1bc5d953c5a7810a8f1724449821ae 100644 (file)
@@ -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