aboutsummaryrefslogtreecommitdiff
path: root/test/fuse_integration/xattr_unsupported.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fuse_integration/xattr_unsupported.go')
-rw-r--r--test/fuse_integration/xattr_unsupported.go31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/fuse_integration/xattr_unsupported.go b/test/fuse_integration/xattr_unsupported.go
new file mode 100644
index 000000000..945fc2ff6
--- /dev/null
+++ b/test/fuse_integration/xattr_unsupported.go
@@ -0,0 +1,31 @@
+//go:build !linux && !darwin
+
+package fuse
+
+import (
+ "errors"
+)
+
+// Extended attributes support for unsupported platforms
+
+var ErrXattrNotSupported = errors.New("extended attributes not supported on this platform")
+
+func setXattr(path, name string, value []byte, flags int) error {
+ return ErrXattrNotSupported
+}
+
+func getXattr(path, name string, value []byte) (int, error) {
+ return 0, ErrXattrNotSupported
+}
+
+func listXattr(path string, list []byte) (int, error) {
+ return 0, ErrXattrNotSupported
+}
+
+func removeXattr(path, name string) error {
+ return ErrXattrNotSupported
+}
+
+func isXattrSupported() bool {
+ return false
+}