Verify MaximumRetryCount=0 if the restart policy is always.

Signed-off-by: Yuan Sun <sunyuan3@huawei.com>
This commit is contained in:
Yuan Sun 2015-03-30 09:07:58 +08:00
parent 41e47bbf34
commit f5310f403d
1 changed files with 10 additions and 0 deletions

View File

@ -191,6 +191,16 @@ func TestRestartPolicyAlways(t *testing.T) {
t.Fatalf("Container restart policy name is %s, expected %s", name, "always")
}
MaximumRetryCount, err := inspectField(id, "HostConfig.RestartPolicy.MaximumRetryCount")
if err != nil {
t.Fatal(err)
}
// MaximumRetryCount=0 if the restart policy is always
if MaximumRetryCount != "0" {
t.Fatalf("Container Maximum Retry Count is %s, expected %s", MaximumRetryCount, "0")
}
logDone("restart - recording restart policy name for --restart=always")
}