Split volumes out from daemon

Docker-DCO-1.1-Signed-off-by: Brian Goff <cpuguy83@gmail.com> (github: cpuguy83)
This commit is contained in:
Brian Goff
2014-09-19 17:47:47 -05:00
parent ba726d9148
commit 45407cf00a
12 changed files with 537 additions and 358 deletions
+1 -1
View File
@@ -1463,7 +1463,7 @@ func TestBuildWithVolumeOwnership(t *testing.T) {
cmd := exec.Command(dockerBinary, "run", "--rm", "testbuildimg", "ls", "-la", "/test")
out, _, err := runCommandWithOutput(cmd)
if err != nil {
t.Fatal(err)
t.Fatal(out, err)
}
if expected := "drw-------"; !strings.Contains(out, expected) {