diff options
author | Jakob Unterwurzacher | 2019-01-20 14:32:59 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2019-01-20 14:32:59 +0100 |
commit | ec4c9f2adb7bf1edde43a981dc690d3fee6175e8 (patch) | |
tree | d47da0fdcccabab2c06422564a2a7acd82ff9870 /tests/test_helpers/helpers.go | |
parent | 962c52364415496b64a42b49fe5f90d593dc09f7 (diff) |
tests: check that we can delete directories with all permission
Regression test for https://github.com/rfjakob/gocryptfs/issues/354
Diffstat (limited to 'tests/test_helpers/helpers.go')
-rw-r--r-- | tests/test_helpers/helpers.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_helpers/helpers.go b/tests/test_helpers/helpers.go index e735cf4..f010a56 100644 --- a/tests/test_helpers/helpers.go +++ b/tests/test_helpers/helpers.go @@ -227,7 +227,9 @@ func TestMkdirRmdir(t *testing.T, plainDir string) { } err = syscall.Unlink(dir + "/file") if err != nil { - t.Error(err) + var st syscall.Stat_t + syscall.Stat(dir, &st) + t.Errorf("err=%v mode=%0o", err, st.Mode) return } err = syscall.Rmdir(dir) |