mirror of https://github.com/docker/docs.git
Docker issue affects nodemanagement tests in Docker 1.9.
Signed-off-by: Dong Chen <dongluo.chen@docker.com>
This commit is contained in:
parent
da37fb5c7b
commit
a9869dcb0e
|
|
@ -40,6 +40,13 @@ function teardown() {
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "refresh loop detects failure" {
|
@test "refresh loop detects failure" {
|
||||||
|
# Docker issue #14203 in runC causing this test to fail.
|
||||||
|
# Issue fixed in Docker 1.10
|
||||||
|
run docker --version
|
||||||
|
if [[ "${output}" == "Docker version 1.9"* ]]; then
|
||||||
|
skip
|
||||||
|
fi
|
||||||
|
|
||||||
# Start 1 engine and register it in the file.
|
# Start 1 engine and register it in the file.
|
||||||
start_docker 2
|
start_docker 2
|
||||||
# Start swarm and check it can reach the node
|
# Start swarm and check it can reach the node
|
||||||
|
|
@ -63,6 +70,13 @@ function teardown() {
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "scheduler retry" {
|
@test "scheduler retry" {
|
||||||
|
# Docker issue #14203 in runC causing this test to fail.
|
||||||
|
# Issue fixed in Docker 1.10
|
||||||
|
run docker --version
|
||||||
|
if [[ "${output}" == "Docker version 1.9"* ]]; then
|
||||||
|
skip
|
||||||
|
fi
|
||||||
|
|
||||||
# Start 1 engine and register it in the file.
|
# Start 1 engine and register it in the file.
|
||||||
start_docker 2
|
start_docker 2
|
||||||
# Start swarm and check it can reach the node
|
# Start swarm and check it can reach the node
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue