aboutsummaryrefslogtreecommitdiff
path: root/test/fuse_integration/sendfile_unsupported.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2025-08-31 12:25:41 -0700
committerchrislu <chris.lu@gmail.com>2025-08-31 12:25:41 -0700
commitd7dc9a47d59c44b8ec0e2bd3923b42d10ac37506 (patch)
tree5bbfff429be6bf6f6b318a0740498f793a724b15 /test/fuse_integration/sendfile_unsupported.go
parentfd1149e5b26c6a762980f2e36c44a19ab081ee8e (diff)
downloadseaweedfs-d7dc9a47d59c44b8ec0e2bd3923b42d10ac37506.tar.xz
seaweedfs-d7dc9a47d59c44b8ec0e2bd3923b42d10ac37506.zip
add more posix tests
Diffstat (limited to 'test/fuse_integration/sendfile_unsupported.go')
-rw-r--r--test/fuse_integration/sendfile_unsupported.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/fuse_integration/sendfile_unsupported.go b/test/fuse_integration/sendfile_unsupported.go
new file mode 100644
index 000000000..64a7818dd
--- /dev/null
+++ b/test/fuse_integration/sendfile_unsupported.go
@@ -0,0 +1,19 @@
+//go:build !linux && !darwin
+
+package fuse
+
+import (
+ "errors"
+)
+
+// Sendfile support for unsupported platforms
+
+var ErrSendfileNotSupported = errors.New("sendfile not supported on this platform")
+
+func sendfileTransfer(outFd int, inFd int, offset *int64, count int) (int, error) {
+ return 0, ErrSendfileNotSupported
+}
+
+func isSendfileSupported() bool {
+ return false
+}