Make ConnPoll stress test time based

Test now runs for fixed amount of time instead of a fixed number of iterations.
This should enable TravisCI to finish the test.
extract-for-data
Jack Christensen 2015-12-12 17:35:24 -06:00
parent d84ee5c18a
commit 8577dccd65
1 changed files with 8 additions and 3 deletions

View File

@ -44,9 +44,11 @@ func TestStressConnPool(t *testing.T) {
{"reset", func(p *pgx.ConnPool, n int) error { p.Reset(); return nil }},
}
actionCount := 5000
var timer *time.Timer
if testing.Short() {
actionCount /= 10
timer = time.NewTimer(5 * time.Second)
} else {
timer = time.NewTimer(60 * time.Second)
}
workerCount := 16
@ -70,8 +72,11 @@ func TestStressConnPool(t *testing.T) {
go work()
}
for i := 0; i < actionCount; i++ {
var stop bool
for i := 0; !stop; i++ {
select {
case <-timer.C:
stop = true
case workChan <- i:
case err := <-errChan:
close(workChan)