Skip to content

Commit 07fc3a0

Browse files
committedMay 31, 2023
fix race when multiple defercleanups are called in goroutines
1 parent 9620623 commit 07fc3a0

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed
 

‎internal/internal_integration/cleanup_test.go

+26
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package internal_integration_test
22

33
import (
44
"fmt"
5+
"sync"
56
"time"
67

78
. "github.com/onsi/ginkgo/v2"
@@ -285,5 +286,30 @@ var _ = Describe("Cleanup", func() {
285286
Ω(rt).Should(HaveTracked("A", "AE", "AA", "C-AE", "C-A", "C-AA"))
286287
})
287288
})
289+
290+
Context("when cleanup is added in parallel in some goroutines", func() {
291+
BeforeEach(func() {
292+
success, _ := RunFixture("concurrent cleanup", func() {
293+
Context("ordered", Ordered, func() {
294+
It("A", func() {
295+
wg := &sync.WaitGroup{}
296+
wg.Add(5)
297+
for i := 0; i < 5; i++ {
298+
i := i
299+
go func() {
300+
DeferCleanup(rt.Run, fmt.Sprintf("dc-%d", i))
301+
wg.Done()
302+
}()
303+
}
304+
wg.Wait()
305+
})
306+
})
307+
})
308+
Ω(success).Should(BeTrue())
309+
})
310+
It("doesn't race", func() {
311+
Ω(rt.TrackedRuns()).Should(ConsistOf("dc-0", "dc-1", "dc-2", "dc-3", "dc-4"))
312+
})
313+
})
288314
})
289315
})

‎internal/suite.go

+2
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,9 @@ func (suite *Suite) pushCleanupNode(node Node) error {
245245

246246
node.NodeIDWhereCleanupWasGenerated = suite.currentNode.ID
247247
node.NestingLevel = suite.currentNode.NestingLevel
248+
suite.selectiveLock.Lock()
248249
suite.cleanupNodes = append(suite.cleanupNodes, node)
250+
suite.selectiveLock.Unlock()
249251

250252
return nil
251253
}

0 commit comments

Comments
 (0)
Please sign in to comment.