浏览代码

Skip racey TestDockerCmdWithTimeout

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
Brian Goff 10 年之前
父节点
当前提交
5cf3a6e010
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      pkg/integration/dockerCmd_utils_test.go

+ 3 - 1
pkg/integration/dockerCmd_utils_test.go

@@ -6,10 +6,11 @@ import (
 	"os/exec"
 	"testing"
 
-	"github.com/go-check/check"
 	"io/ioutil"
 	"strings"
 	"time"
+
+	"github.com/go-check/check"
 )
 
 const dockerBinary = "docker"
@@ -159,6 +160,7 @@ func (s *DockerCmdSuite) TestDockerCmdSuccess(c *check.C) {
 // DockerCmdWithTimeout tests
 
 func (s *DockerCmdSuite) TestDockerCmdWithTimeout(c *check.C) {
+	c.Skip("racey test")
 	cmds := []struct {
 		binary           string
 		args             []string