diff options
author | Vassili Tchersky <vt+git@vbcy.org> | 2025-02-17 08:48:42 +0100 |
---|---|---|
committer | Bernd Schubert <bernd@bsbernd.com> | 2025-02-18 18:11:00 +0100 |
commit | 42824c4afc7da568b3a1914c5e5954049d71f253 (patch) | |
tree | 7ca83883d5f0af52b412e726f905f0ac56bee6a0 /test | |
parent | 84da6e08fb533bea595373e20b3b8a4edb4987cb (diff) | |
download | libfuse-42824c4afc7da568b3a1914c5e5954049d71f253.tar.gz |
tests: Re-enable mknod and mkfifo tests on FreeBSD
Signed-off-by: Vassili Tchersky <vt+git@vbcy.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/test_syscalls.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/test_syscalls.c b/test/test_syscalls.c index 97906a3..4bbe973 100644 --- a/test/test_syscalls.c +++ b/test/test_syscalls.c @@ -1065,7 +1065,6 @@ static int test_create_unlink(void) return 0; } -#ifndef __FreeBSD__ static int test_mknod(void) { int err = 0; @@ -1098,7 +1097,6 @@ static int test_mknod(void) success(); return 0; } -#endif #define test_open(exist, flags, mode) do_test_open(exist, flags, #flags, mode) @@ -1792,7 +1790,6 @@ fail: #undef PATH } -#ifndef __FreeBSD__ static int test_mkfifo(void) { int res; @@ -1824,7 +1821,6 @@ static int test_mkfifo(void) success(); return 0; } -#endif static int test_mkdir(void) { @@ -2120,10 +2116,8 @@ int main(int argc, char *argv[]) err += test_symlink(); err += test_link(); err += test_link2(); -#ifndef __FreeBSD__ err += test_mknod(); err += test_mkfifo(); -#endif err += test_mkdir(); err += test_rename_file(); err += test_rename_dir(); |