From 83783af08ea321091e5f08d46ee0d06431c9eff2 Mon Sep 17 00:00:00 2001 From: vikrambirsingh Date: Mon, 11 Nov 2019 18:54:21 +0000 Subject: [PATCH] Disable tests missed by PR 40155 The tests starts a new daemon, but attempts to run it with overlay2, and using a unix:// socket, which doesn't really work on Windows. 40155 tried to disable such tests but missed two of them. They are being disabled with this change. Signed-off-by: vikrambirsingh --- integration/system/info_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration/system/info_test.go b/integration/system/info_test.go index 0124f126fd..b719e5579e 100644 --- a/integration/system/info_test.go +++ b/integration/system/info_test.go @@ -91,6 +91,7 @@ func TestInfoDebug(t *testing.T) { func TestInfoInsecureRegistries(t *testing.T) { skip.If(t, testEnv.IsRemoteDaemon, "cannot run daemon when remote daemon") + skip.If(t, testEnv.DaemonInfo.OSType == "windows", "FIXME: test starts daemon with -H unix://.....") const ( registryCIDR = "192.168.1.0/24" @@ -115,6 +116,7 @@ func TestInfoInsecureRegistries(t *testing.T) { func TestInfoRegistryMirrors(t *testing.T) { skip.If(t, testEnv.IsRemoteDaemon, "cannot run daemon when remote daemon") + skip.If(t, testEnv.DaemonInfo.OSType == "windows", "FIXME: test starts daemon with -H unix://.....") const ( registryMirror1 = "https://192.168.1.2"