fix docker integration-cli restart test race

Docker-DCO-1.1-Signed-off-by: Erik Hollensbe <github@hollensbe.org> (github: erikh)
Upstream-commit: 5931669343f568114cb209dabf8913be44cd63e8
Component: engine
This commit is contained in:
Erik Hollensbe
2014-07-28 23:46:14 -07:00
parent c827ecda15
commit 39b46f69f1

View File

@ -4,6 +4,7 @@ import (
"os/exec"
"strings"
"testing"
"time"
)
func TestDockerRestartStoppedContainer(t *testing.T) {
@ -49,6 +50,8 @@ func TestDockerRestartRunningContainer(t *testing.T) {
cleanedContainerID := stripTrailingCharacters(out)
time.Sleep(1 * time.Second)
runCmd = exec.Command(dockerBinary, "logs", cleanedContainerID)
out, _, err = runCommandWithOutput(runCmd)
errorOut(err, t, out)
@ -65,6 +68,8 @@ func TestDockerRestartRunningContainer(t *testing.T) {
out, _, err = runCommandWithOutput(runCmd)
errorOut(err, t, out)
time.Sleep(1 * time.Second)
if out != "foobar\nfoobar\n" {
t.Errorf("container should've printed 'foobar' twice")
}