Browse code

Windows: Enable 2 TestAttach* tests

Signed-off-by: John Howard <jhoward@microsoft.com>

John Howard authored on 2016/08/30 07:57:27
Showing 1 changed files
... ...
@@ -17,8 +17,6 @@ import (
17 17
 const attachWait = 5 * time.Second
18 18
 
19 19
 func (s *DockerSuite) TestAttachMultipleAndRestart(c *check.C) {
20
-	testRequires(c, DaemonIsLinux)
21
-
22 20
 	endGroup := &sync.WaitGroup{}
23 21
 	startGroup := &sync.WaitGroup{}
24 22
 	endGroup.Add(3)
... ...
@@ -89,7 +87,6 @@ func (s *DockerSuite) TestAttachMultipleAndRestart(c *check.C) {
89 89
 }
90 90
 
91 91
 func (s *DockerSuite) TestAttachTTYWithoutStdin(c *check.C) {
92
-	testRequires(c, DaemonIsLinux)
93 92
 	out, _ := dockerCmd(c, "run", "-d", "-ti", "busybox")
94 93
 
95 94
 	id := strings.TrimSpace(out)