diff options
Diffstat (limited to 'tests/matrix/matrix_test.go')
-rw-r--r-- | tests/matrix/matrix_test.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/matrix/matrix_test.go b/tests/matrix/matrix_test.go index 2542844..5e536b3 100644 --- a/tests/matrix/matrix_test.go +++ b/tests/matrix/matrix_test.go @@ -873,3 +873,11 @@ func TestAccess(t *testing.T) { t.Error("X_OK should have failed") } } + +func TestStatfs(t *testing.T) { + var st syscall.Statfs_t + syscall.Statfs(test_helpers.DefaultPlainDir, &st) + if st.Bsize == 0 { + t.Errorf("statfs reports size zero: %#v", st) + } +} |