Files
RedBear-OS/tests/dirent/main.c
T
sourceturner 20d89d166c use ip6 feature flag for IPv6 related definitions
as a consequence, some unit tests have to be fixed, too
2026-06-04 17:48:14 +02:00

45 lines
995 B
C

#include <assert.h>
#include <dirent.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include "test_helpers.h"
int main(void) {
printf("%lu\n", sizeof(struct dirent));
DIR* dir = opendir("example_dir/");
ERROR_IF(opendir, dir, == NULL);
struct dirent* entry;
//int tell = 0;
for (char counter = 0; (entry = readdir(dir)); counter += 1) {
puts(entry->d_name);
(void) counter;
//if (counter == 4) {
// tell = telldir(dir);
//}
}
puts("--- Testing rewind ---");
rewinddir(dir);
entry = readdir(dir);
assert(entry != NULL);
puts(entry->d_name);
// puts("--- Testing seek ---");
// // Why this doesn't cause it to actually go to the 4th element is beyond
// // me, but glibc acts the same way.
// seekdir(dir, tell);
// entry = readdir(dir);
// puts(entry->d_name);
int c = closedir(dir);
ERROR_IF(closedir, c, == -1);
UNEXP_IF(closedir, c, != 0);
}