diff options
author | Jakob Unterwurzacher | 2025-03-26 23:34:21 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2025-04-19 22:51:52 +0200 |
commit | a8bb03b438e2c58565457b0cbcba9a77a316fbd2 (patch) | |
tree | cce12523a543d431e5801b31793339cb6ab54847 /go.mod | |
parent | 83e587f4b1803d17e2e9fd0b3860dc9f24117acc (diff) |
go.mod: upgrade to go-fuse v2.7.2
Done using: go get -u github.com/hanwen/go-fuse/v2
As expected, this breaks TestSeekDir:
gocryptfs/tests/defaults$ go test -run TestSeekDir
test_helpers: warning: testParentDir "/tmp/gocryptfs-test-parent-1026" does not reside on ext4, we will miss failures caused by ino reuse
--- FAIL: TestSeekDir (0.00s)
main_test.go:536: 1st getdents returned 288 bytes
main_test.go:542: 2nd getdents returned 0 bytes
main_test.go:551: operation not supported
FAIL
exit status 1
FAIL github.com/rfjakob/gocryptfs/v2/tests/defaults 0.030s
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ go 1.19 require ( github.com/aperturerobotics/jacobsa-crypto v1.0.2 - github.com/hanwen/go-fuse/v2 v2.5.0 + github.com/hanwen/go-fuse/v2 v2.7.2 github.com/moby/sys/mountinfo v0.6.2 github.com/pkg/xattr v0.4.9 github.com/rfjakob/eme v1.1.2 |