From 5f1b960b2eab85ec662564d4492a5d78e1d97d08 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Fri, 6 Mar 2015 23:32:26 -0600 Subject: [PATCH] Disabled a test that can't pass. --- samples/memfs/memfs_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/samples/memfs/memfs_test.go b/samples/memfs/memfs_test.go index b082415..7b8af1c 100644 --- a/samples/memfs/memfs_test.go +++ b/samples/memfs/memfs_test.go @@ -598,7 +598,9 @@ func (t *MemFSTest) UnlinkFile_StillOpen() { AssertEq(nil, err) ExpectEq(4, fi.Size()) - ExpectEq(0, fi.Sys().(*syscall.Stat_t).Nlink) + // TODO(jacobsa): Re-enable this assertion if the following issue is fixed: + // https://github.com/bazillion/fuse/issues/66 + // ExpectEq(0, fi.Sys().(*syscall.Stat_t).Nlink) // The contents should still be available. buf := make([]byte, 1024)