Package: gocryptfs / 2.3-1

Metadata

Package Version Patches format
gocryptfs 2.3-1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
0001 tests add TestNotIdle.patch | (download)

tests/cli/cli_test.go | 41 41 0 - 0 !
1 file changed, 41 insertions( )

 [patch] tests: add testnotidle

Mount with idle timeout of 100ms read something every 10ms. The fs should
NOT get unmounted. Regression test for https://github.com/rfjakob/gocryptfs/issues/421

001 disable emulated getdents.patch | (download)

internal/syscallcompat/getdents_other.go | 2 2 0 - 0 !
internal/syscallcompat/getdents_test.go | 6 0 6 - 0 !
2 files changed, 2 insertions( ), 6 deletions(-)

 disable emulated getdents
 Upstream provides an emulation for the syscall Getdents, which does
 not exist on Darwin (MacOS). The test for that emulation fails with
 gccgo because libgo does not support reading a directory besed on a 
 file descriptor. (https://github.com/rfjakob/gocryptfs/issues/201)
 .
 The emulation is not needed in Debian, certainly not on those
 architectures running Linux, so it was disabled together with the
 test.
002 disable getdents test.patch | (download)

internal/syscallcompat/getdents_test.go | 1 1 0 - 0 !
1 file changed, 1 insertion( )

 disable getdents tests
 The getdents tests may fail on filesystems that do not support extended
 attributes. They were disabled.