Browse code

Disable TestPsListContainersFilterExited (Windows)

On account of being flaky on both RS1 and RS5.

Co-Authored-By: Sebastiaan van Stijn <thaJeztah@users.noreply.github.com>
Signed-off-by: Vikram bir Singh <vikrambir.singh@docker.com>
(cherry picked from commit 7de4e130898fc1cf74f8c4fec24416c3f7d3589b)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Vikram bir Singh authored on 2019/09/18 07:10:54
Showing 1 changed files
... ...
@@ -436,6 +436,10 @@ func (s *DockerSuite) TestPsListContainersFilterLabel(c *testing.T) {
436 436
 }
437 437
 
438 438
 func (s *DockerSuite) TestPsListContainersFilterExited(c *testing.T) {
439
+	// TODO Flaky on  Windows CI [both RS1 and RS5]
440
+	// On slower machines the container may not have exited
441
+	// yet when we filter below by exit status/exit value.
442
+	skip.If(c, DaemonIsWindows(), "FLAKY on Windows, see #20819")
439 443
 	runSleepingContainer(c, "--name=sleep")
440 444
 
441 445
 	firstZero, _ := dockerCmd(c, "run", "-d", "busybox", "true")