Browse code

Merge pull request #11216 from ahmetalpbalkan/win-cli/TestCliProxyDisableProxyUnixSock-fix

integ-cli: skip test assuming -H is unix://...

Alexander Morozov authored on 2015/03/10 01:09:52
Showing 1 changed files
... ...
@@ -8,6 +8,8 @@ import (
8 8
 )
9 9
 
10 10
 func TestCliProxyDisableProxyUnixSock(t *testing.T) {
11
+	testRequires(t, SameHostDaemon) // test is valid when DOCKER_HOST=unix://..
12
+
11 13
 	cmd := exec.Command(dockerBinary, "info")
12 14
 	cmd.Env = appendBaseEnv([]string{"HTTP_PROXY=http://127.0.0.1:9999"})
13 15