summaryrefslogtreecommitdiff
path: root/static_pool_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'static_pool_test.go')
-rwxr-xr-xstatic_pool_test.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/static_pool_test.go b/static_pool_test.go
index 27907af5..e97e2034 100755
--- a/static_pool_test.go
+++ b/static_pool_test.go
@@ -174,6 +174,19 @@ func Test_StaticPool_Broken_Replace(t *testing.T) {
wg := &sync.WaitGroup{}
wg.Add(1)
+ // force test to finish
+ tt := time.NewTimer(time.Second * 20)
+ go func() {
+ select {
+ case <-tt.C:
+ tt.Stop()
+ assert.Fail(t, "force exit from the test")
+ wg.Done()
+ }
+ }()
+
+ time.Sleep(time.Second)
+
workers := p.Workers()
for i := 0; i < len(workers); i++ {
workers[i].AddListener(func(event interface{}) {
@@ -193,6 +206,7 @@ func Test_StaticPool_Broken_Replace(t *testing.T) {
assert.Nil(t, res.Body)
wg.Wait()
+ tt.Stop()
p.Destroy(ctx)
}