mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Increase timeout on TestRunOOMExitCode test
I can never get it to work for me when its just 3 seconds. With this change it generates the OOM message around 17 seconds, but I increased the timeout to 30 for people with slower machines Signed-off-by: Doug Davis <dug@us.ibm.com>
This commit is contained in:
parent
7dd79dcc7b
commit
8d1455d88b
1 changed files with 2 additions and 2 deletions
|
@ -3281,7 +3281,7 @@ func TestRunOOMExitCode(t *testing.T) {
|
||||||
go func() {
|
go func() {
|
||||||
defer close(done)
|
defer close(done)
|
||||||
|
|
||||||
runCmd := exec.Command(dockerBinary, "run", "-m", "4MB", "busybox", "sh", "-c", "x=a; while true; do x=$x$x; done")
|
runCmd := exec.Command(dockerBinary, "run", "-m", "4MB", "busybox", "sh", "-c", "x=a; while true; do x=$x$x$x$x; done")
|
||||||
out, exitCode, _ := runCommandWithOutput(runCmd)
|
out, exitCode, _ := runCommandWithOutput(runCmd)
|
||||||
if expected := 137; exitCode != expected {
|
if expected := 137; exitCode != expected {
|
||||||
t.Fatalf("wrong exit code for OOM container: expected %d, got %d (output: %q)", expected, exitCode, out)
|
t.Fatalf("wrong exit code for OOM container: expected %d, got %d (output: %q)", expected, exitCode, out)
|
||||||
|
@ -3290,7 +3290,7 @@ func TestRunOOMExitCode(t *testing.T) {
|
||||||
|
|
||||||
select {
|
select {
|
||||||
case <-done:
|
case <-done:
|
||||||
case <-time.After(3 * time.Second):
|
case <-time.After(30 * time.Second):
|
||||||
t.Fatal("Timeout waiting for container to die on OOM")
|
t.Fatal("Timeout waiting for container to die on OOM")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue