summaryrefslogtreecommitdiff
path: root/tests/headers/fenv.c
diff options
context:
space:
mode:
authorKacper <kacper@mail.openlinux.dev>2025-12-25 19:24:38 +0100
committerKacper <kacper@mail.openlinux.dev>2025-12-25 20:35:03 +0100
commita984eb367c032dbe2577f01238c3d1268526be70 (patch)
tree437fef40379b2758b129ccea39df3570fa2d145e /tests/headers/fenv.c
parent8834571b202cf4dc9c649cfb096c213b6ecf1566 (diff)
Clang-tidy fixes
Diffstat (limited to 'tests/headers/fenv.c')
-rw-r--r--tests/headers/fenv.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/tests/headers/fenv.c b/tests/headers/fenv.c
deleted file mode 100644
index 5f82c524..00000000
--- a/tests/headers/fenv.c
+++ /dev/null
@@ -1,38 +0,0 @@
-// https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/fenv.h.html
-
-#include "core.h"
-
-#include <fenv.h>
-
-TEST(fenv_h)
-{
- TYPE(fenv_t);
- TYPE(fexcept_t);
-
- MACRO(FE_DIVBYZERO);
- MACRO(FE_INEXACT);
- MACRO(FE_INVALID);
- MACRO(FE_OVERFLOW);
- MACRO(FE_UNDERFLOW);
-
- MACRO(FE_ALL_EXCEPT);
-
- MACRO(FE_DOWNWARD);
- MACRO(FE_TONEAREST);
- MACRO(FE_TOWARDZERO);
- MACRO(FE_UPWARD);
-
- const fenv_t *fe_dfl_env = FE_DFL_ENV;
-
- FUNCTION(feclearexcept, int (*f)(int));
- FUNCTION(fegetenv, int (*f)(fenv_t *));
- FUNCTION(fegetexceptflag, int (*f)(fexcept_t *, int));
- FUNCTION(fegetround, int (*f)(void));
- FUNCTION(feholdexcept, int (*f)(fenv_t *));
- FUNCTION(feraiseexcept, int (*f)(int));
- FUNCTION(fesetenv, int (*f)(const fenv_t *));
- FUNCTION(fesetexceptflag, int (*f)(const fexcept_t *, int));
- FUNCTION(fesetround, int (*f)(int));
- FUNCTION(fetestexcept, int (*f)(int));
- FUNCTION(feupdateenv, int (*f)(const fenv_t *));
-}