summaryrefslogtreecommitdiff
path: root/tests/float_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/float_test.cpp')
-rw-r--r--tests/float_test.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/float_test.cpp b/tests/float_test.cpp
index a75214e20..3ef459301 100644
--- a/tests/float_test.cpp
+++ b/tests/float_test.cpp
@@ -112,16 +112,13 @@ TEST(float_h, macros) {
#if !defined(FLT_EVAL_METHOD)
#error FLT_EVAL_METHOD
#endif
-// TODO: FLT_HAS_SUBNORM currently missing from clang. Negate this test when fixed.
-#if defined(FLT_HAS_SUBNORM)
+#if !defined(FLT_HAS_SUBNORM)
#error FLT_HAS_SUBNORM
#endif
-// TODO: DBL_HAS_SUBNORM currently missing from clang. Negate this test when fixed.
-#if defined(DBL_HAS_SUBNORM)
+#if !defined(DBL_HAS_SUBNORM)
#error DBL_HAS_SUBNORM
#endif
-// TODO: LDBL_HAS_SUBNORM currently missing from clang. Negate this test when fixed.
-#if defined(LDBL_HAS_SUBNORM)
+#if !defined(LDBL_HAS_SUBNORM)
#error LDBL_HAS_SUBNORM
#endif
}