diff options
Diffstat (limited to 'tests/matrix')
| -rw-r--r-- | tests/matrix/matrix_test.go | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/tests/matrix/matrix_test.go b/tests/matrix/matrix_test.go index 0d9c22c..417e126 100644 --- a/tests/matrix/matrix_test.go +++ b/tests/matrix/matrix_test.go @@ -972,3 +972,13 @@ func TestPwd(t *testing.T) {  		os.Mkdir(dir, 0700)  	}  } + +// TestRootIno checks that inode number of the root dir is set +// https://github.com/hanwen/go-fuse/issues/399 +func TestRootIno(t *testing.T) { +	var st syscall.Stat_t +	syscall.Stat(test_helpers.DefaultPlainDir, &st) +	if st.Ino == 0 { +		t.Errorf("inode number of root dir is zero") +	} +} | 
