summaryrefslogtreecommitdiff
path: root/tests/headers/ftw.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/ftw.c
parent8834571b202cf4dc9c649cfb096c213b6ecf1566 (diff)
Clang-tidy fixes
Diffstat (limited to 'tests/headers/ftw.c')
-rw-r--r--tests/headers/ftw.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/headers/ftw.c b/tests/headers/ftw.c
deleted file mode 100644
index a6c3c38d..00000000
--- a/tests/headers/ftw.c
+++ /dev/null
@@ -1,26 +0,0 @@
-// https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/ftw.h.html
-
-#include "core.h"
-
-#include <ftw.h>
-
-TEST(ftw_h)
-{
- TYPE(struct FTW);
- STRUCT_MEMBER(struct FTW, int, base);
- STRUCT_MEMBER(struct FTW, int, level);
-
- MACRO(FTW_F);
- MACRO(FTW_D);
- MACRO(FTW_DNR);
- MACRO(FTW_DP);
- MACRO(FTW_NS);
- MACRO(FTW_SL);
- MACRO(FTW_SLN);
-
- MACRO(FTW_PHYS);
- MACRO(FTW_MOUNT);
- MACRO(FTW_XDEV);
- MACRO(FTW_DEPTH);
- MACRO(FTW_CHDIR);
-}