mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Make tests compatible with GoLang 1.18
This commit is contained in:
parent
b6eb60f019
commit
dc16ccdb93
1 changed files with 9 additions and 11 deletions
|
@ -53,15 +53,13 @@ var _ = Describe("Pipeline", func() {
|
|||
}
|
||||
close(inC)
|
||||
|
||||
current := atomic.Int32{}
|
||||
count := atomic.Int32{}
|
||||
max := atomic.Int32{}
|
||||
var current, count, max int32
|
||||
outC, _ := pl.Stage(context.Background(), maxWorkers, inC, func(ctx context.Context, in int) (int, error) {
|
||||
defer current.Add(-1)
|
||||
c := current.Add(1)
|
||||
count.Add(1)
|
||||
if c > max.Load() {
|
||||
max.Store(c)
|
||||
defer atomic.AddInt32(¤t, -1)
|
||||
c := atomic.AddInt32(¤t, 1)
|
||||
atomic.AddInt32(&count, 1)
|
||||
if c > atomic.LoadInt32(&max) {
|
||||
atomic.StoreInt32(&max, c)
|
||||
}
|
||||
time.Sleep(10 * time.Millisecond) // Slow process
|
||||
return 0, nil
|
||||
|
@ -70,9 +68,9 @@ var _ = Describe("Pipeline", func() {
|
|||
for range outC {
|
||||
}
|
||||
|
||||
Expect(count.Load()).To(Equal(int32(numJobs)))
|
||||
Expect(current.Load()).To(Equal(int32(0)))
|
||||
Expect(max.Load()).To(Equal(int32(maxWorkers)))
|
||||
Expect(count).To(Equal(int32(numJobs)))
|
||||
Expect(current).To(Equal(int32(0)))
|
||||
Expect(max).To(Equal(int32(maxWorkers)))
|
||||
})
|
||||
})
|
||||
When("the context is canceled", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue