1
0
mirror of https://github.com/docker/cli.git synced 2026-01-15 07:40:57 +03:00

Reduce TestRunCommandWithTimeoutKilled flakiness

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
Upstream-commit: 797f630d2e3c9180848b1adb7fd6fa879f284165
Component: engine
This commit is contained in:
Tonis Tiigi
2016-10-10 17:31:15 -07:00
parent 0110bb5a48
commit f1f88179ba

View File

@@ -63,12 +63,12 @@ func TestRunCommandWithTimeoutKilled(t *testing.T) {
t.Skip("Needs porting to Windows")
}
command := []string{"sh", "-c", "while true ; do echo 1 ; sleep .1 ; done"}
result := RunCmd(Cmd{Command: command, Timeout: 500 * time.Millisecond})
command := []string{"sh", "-c", "while true ; do echo 1 ; sleep .5 ; done"}
result := RunCmd(Cmd{Command: command, Timeout: 1250 * time.Millisecond})
result.Assert(t, Expected{Timeout: true})
ones := strings.Split(result.Stdout(), "\n")
assert.Equal(t, len(ones), 6)
assert.Equal(t, len(ones), 4)
}
func TestRunCommandWithErrors(t *testing.T) {