Skip racey TestDockerCmdWithTimeout

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
This commit is contained in:
Brian Goff 2015-09-16 18:32:55 -04:00
parent fdcdc04837
commit c44ac99292

View file

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