Update.
CI / build-linux (clang) (push) Failing after 18s
CI / build-linux (gcc) (push) Failing after 27s
CI / integration-test (push) Has been skipped
CI / static-analysis (push) Failing after 38s
CI / build-macos (push) Has been cancelled
CI / release (push) Has been cancelled

This commit is contained in:
2025-11-28 07:21:42 +01:00
parent f298207926
commit 0554bd7ed8
23 changed files with 133 additions and 268 deletions
+3 -1
View File
@@ -8,8 +8,10 @@
#include <dirent.h>
#include <time.h>
static int fixture_counter = 0;
int fixture_create_temp_dir(char *path, size_t size) {
snprintf(path, size, "/tmp/nwedav_test_%d_%ld", getpid(), (long)time(NULL));
snprintf(path, size, "/tmp/nwedav_test_%d_%ld_%d", getpid(), (long)time(NULL), fixture_counter++);
return mkdir(path, 0755);
}