master
go 13 lines 231 Bytes
Raw
1 // Stub that skips xattr tests on non-Linux platforms.
2 //go:build !linux
3
4 package fuse
5
6 import (
7 "fmt"
8 "runtime"
9 )
10
11 func getXattr(_, _ string) (string, error) {
12 return "", fmt.Errorf("xattr not supported on %s", runtime.GOOS)
13 }