diff options
author | Jakob Unterwurzacher | 2021-12-08 18:49:21 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2021-12-08 18:49:21 +0100 |
commit | 7d60315cd53080e223051a4f16eb3ace3b86e095 (patch) | |
tree | b64657c619a23c90c48d788b0c7fcbd7ac16b157 /tests/matrix/concurrency_test.go | |
parent | de22cb1e5dfba8f8b97a5da671bfb2b1a845afb7 (diff) |
tests: convert Creat() calls to Open()
Creat() is equivalent to Open(..., O_CREAT|O_WRONLY|O_TRUNC, ...)
and MacOS does not have syscall.Creat().
https://github.com/rfjakob/gocryptfs/issues/623
Diffstat (limited to 'tests/matrix/concurrency_test.go')
-rw-r--r-- | tests/matrix/concurrency_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/matrix/concurrency_test.go b/tests/matrix/concurrency_test.go index d133c45..d824316 100644 --- a/tests/matrix/concurrency_test.go +++ b/tests/matrix/concurrency_test.go @@ -144,7 +144,7 @@ func TestInoReuse(t *testing.T) { wg.Add(1) go func() { for i := 0; i < 1000; i++ { - fd, err := syscall.Creat(fn, 0600) + fd, err := syscall.Open(fn, syscall.O_CREAT|syscall.O_WRONLY|syscall.O_TRUNC, 0600) if err == syscall.EISDIR { continue } |