diff options
| author | Jakob Unterwurzacher | 2020-08-16 19:41:00 +0200 | 
|---|---|---|
| committer | Jakob Unterwurzacher | 2020-08-16 19:41:00 +0200 | 
| commit | 58a2726977a1b1f92063a1e51c0769af71833e72 (patch) | |
| tree | 2c2112205a27c48139fa3700fe093c84b3546e14 /tests | |
| parent | 6f3cca2cdd0265fec4613023c58dfe3378b91b71 (diff) | |
v2api/reverse: implement Statfs
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/matrix/matrix_test.go | 8 | ||||
| -rw-r--r-- | tests/reverse/correctness_test.go | 8 | 
2 files changed, 16 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) +	} +} diff --git a/tests/reverse/correctness_test.go b/tests/reverse/correctness_test.go index 6b7ed5f..78c9c4b 100644 --- a/tests/reverse/correctness_test.go +++ b/tests/reverse/correctness_test.go @@ -249,3 +249,11 @@ func Test0100Dir(t *testing.T) {  	}  	fd.Close()  } + +func TestStatfs(t *testing.T) { +	var st syscall.Statfs_t +	syscall.Statfs(dirB, &st) +	if st.Bsize == 0 { +		t.Errorf("statfs reports size zero: %#v", st) +	} +}  | 
