From cbf282861b450db3a475f77686e3658c95c2a5a0 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Wed, 1 Sep 2021 10:28:33 +0200 Subject: [PATCH] tests/matrix: don't leak fds in TestConcurrentReadCreate We leaked a file descriptor for each empty file we encountered. --- tests/matrix/concurrency_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/matrix/concurrency_test.go b/tests/matrix/concurrency_test.go index 04b7c96..d133c45 100644 --- a/tests/matrix/concurrency_test.go +++ b/tests/matrix/concurrency_test.go @@ -110,6 +110,7 @@ func TestConcurrentReadCreate(t *testing.T) { continue } n, err := f.Read(buf0) + f.Close() if err == io.EOF { i++ continue @@ -122,7 +123,6 @@ func TestConcurrentReadCreate(t *testing.T) { // Calling t.Fatal() from a goroutine hangs the test so we use log.Fatal log.Fatalf("%s: content mismatch: have=%q want=%q", t.Name(), string(buf), string(content)) } - f.Close() } wg.Done() }()