summaryrefslogtreecommitdiff
path: root/internal/fusefrontend/xattr_linux_unit_test.go
blob: 5fea58b40e8b154c692ec1cd319240d62baa843b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// +build linux

package fusefrontend

import (
	"testing"
)

func TestDisallowedLinuxAttributes(t *testing.T) {
	if !disallowedXAttrName("xxxx") {
		t.Fatalf("Names that don't start with 'user.' should fail")
	}
}