From 2b6649e390da3a57d9498917afc540d2efcfa0a9 Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Fri, 24 May 2013 18:31:47 -0700 Subject: [PATCH] Added FIXME about possible race condition in a unit test Upstream-commit: 194f48774992644257bf7cf0878e47e9834d40e1 Component: engine --- components/engine/server_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/components/engine/server_test.go b/components/engine/server_test.go index 7b90252864..b96e1dd5eb 100644 --- a/components/engine/server_test.go +++ b/components/engine/server_test.go @@ -85,6 +85,7 @@ func TestCreateStartRestartStopStartKillRm(t *testing.T) { t.Fatal(err) } + // FIXME: this failed once with a race condition ("Unable to remove filesystem for xxx: directory not empty") if err = srv.ContainerDestroy(id, true); err != nil { t.Fatal(err) }