Merge pull request #10498 from ashahab-altiscale/9875-lxc-stats

Implements stats for lxc driver
This commit is contained in:
Michael Crosby
2015-02-25 13:46:18 -08:00
9 changed files with 204 additions and 106 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ func TestEventsContainerFailStartDie(t *testing.T) {
out, _, _ := dockerCmd(t, "images", "-q")
image := strings.Split(out, "\n")[0]
eventsCmd := exec.Command(dockerBinary, "run", "-d", "--name", "testeventdie", image, "blerg")
eventsCmd := exec.Command(dockerBinary, "run", "--name", "testeventdie", image, "blerg")
_, _, err := runCommandWithOutput(eventsCmd)
if err == nil {
t.Fatalf("Container run with command blerg should have failed, but it did not")