Not supported yet on this platform.
See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=283179
Signed-off-by: Vassili Tchersky <vt+git@vbcy.org>
return 0;
}
+#ifndef __FreeBSD__
/* this tests open with O_TMPFILE
note that this will only work with the fuse low level api
you will get ENOTSUP with the high level api */
success();
return 0;
}
+#endif
int main(int argc, char *argv[])
{
err += test_create_ro_dir(O_CREAT | O_WRONLY);
err += test_create_ro_dir(O_CREAT | O_TRUNC);
err += test_copy_file_range();
+#ifndef __FreeBSD__
err += test_create_tmpfile();
err += test_create_and_link_tmpfile();
+#endif
unlink(testfile2);
unlink(testsock);