1
0
mirror of https://github.com/moby/moby.git synced 2025-08-01 05:47:11 +03:00

Last three tests skip on lxc.

Now we can scale lxc tests to all PRs.

Docker-DCO-1.1-Signed-off-by: Jessie Frazelle <princess@docker.com> (github: jfrazelle)

Docker-DCO-1.1-Signed-off-by: Jessie Frazelle <hugs@docker.com> (github: jfrazelle)

Docker-DCO-1.1-Signed-off-by: Jessie Frazelle <jess@docker.com> (github: jfrazelle)
This commit is contained in:
Jessica Frazelle
2015-02-25 20:16:44 -08:00
parent df7ba57f5f
commit 321874f376
6 changed files with 43 additions and 12 deletions

View File

@ -2,11 +2,12 @@ package main
import (
"encoding/json"
"github.com/docker/docker/nat"
"os"
"os/exec"
"testing"
"time"
"github.com/docker/docker/nat"
)
// Make sure we can create a simple container with some args
@ -227,8 +228,8 @@ func TestCreateEchoStdout(t *testing.T) {
}
func TestCreateVolumesCreated(t *testing.T) {
defer deleteAllContainers()
testRequires(t, SameHostDaemon)
defer deleteAllContainers()
name := "test_create_volume"
if out, _, err := runCommandWithOutput(exec.Command(dockerBinary, "create", "--name", name, "-v", "/foo", "busybox")); err != nil {