Skip unstable tests from Docker bug 14203.

Signed-off-by: Dong Chen <dongluo.chen@docker.com>
This commit is contained in:
Dong Chen 2016-03-23 18:29:16 -07:00
parent ef1c777887
commit 96980d954d
1 changed files with 6 additions and 6 deletions

View File

@ -9,9 +9,9 @@ function teardown() {
@test "scheduler avoids failing node" {
# Docker issue #14203 in runC causing this test to fail.
# Issue fixed in Docker 1.10
# Issue fixed after Docker 1.10
run docker --version
if [[ "${output}" == "Docker version 1.9"* ]]; then
if [[ "${output}" == "Docker version 1.9"* || "${output}" == "Docker version 1.10"* ]]; then
skip
fi
@ -41,9 +41,9 @@ function teardown() {
@test "refresh loop detects failure" {
# Docker issue #14203 in runC causing this test to fail.
# Issue fixed in Docker 1.10
# Issue fixed after Docker 1.10
run docker --version
if [[ "${output}" == "Docker version 1.9"* ]]; then
if [[ "${output}" == "Docker version 1.9"* || "${output}" == "Docker version 1.10"* ]]; then
skip
fi
@ -71,9 +71,9 @@ function teardown() {
@test "scheduler retry" {
# Docker issue #14203 in runC causing this test to fail.
# Issue fixed in Docker 1.10
# Issue fixed after Docker 1.10
run docker --version
if [[ "${output}" == "Docker version 1.9"* ]]; then
if [[ "${output}" == "Docker version 1.9"* || "${output}" == "Docker version 1.10"* ]]; then
skip
fi