Up test timeout to 10s based on recent drone.io timeout failures

Docker-DCO-1.1-Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com> (github: estesp)
Upstream-commit: ee17b93df9ef2150d0ef25e077f1f87637a54508
Component: engine
This commit is contained in:
Phil Estes
2014-10-23 14:30:39 -04:00
parent 1e8d742e05
commit 66fd2e972d

View File

@ -2266,7 +2266,7 @@ func TestRunRedirectStdout(t *testing.T) {
}()
select {
case <-time.After(2 * time.Second):
case <-time.After(10 * time.Second):
t.Fatal("command timeout")
case <-ch:
}