diff options
author | Kevin Krakauer <krakauer@google.com> | 2018-08-21 16:19:59 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-08-21 16:21:05 -0700 |
commit | ae68e9e7513083411875110bd31bd89ac3a58cb7 (patch) | |
tree | 99a50ecb03b6139189cc2809705abb8d46bcbd22 /runsc/container | |
parent | a316f83977e2a8d0b2746985342fb400472645ae (diff) |
Temporarily skip multi-container tests in container_test until deflaked.
PiperOrigin-RevId: 209679235
Change-Id: I527e779eeb113d0c162f5e27a2841b9486f0e39f
Diffstat (limited to 'runsc/container')
-rw-r--r-- | runsc/container/container_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runsc/container/container_test.go b/runsc/container/container_test.go index 4d44e7abe..7f2bac4b8 100644 --- a/runsc/container/container_test.go +++ b/runsc/container/container_test.go @@ -1366,6 +1366,7 @@ func TestAbbreviatedIDs(t *testing.T) { // TestMultiContainerSanity checks that it is possible to run 2 dead-simple // containers in the same sandbox. func TestMultiContainerSanity(t *testing.T) { + t.Skip("Test is flakey.") // TODO: Remove. for _, conf := range configs(all...) { t.Logf("Running test with conf: %+v", conf) @@ -1438,6 +1439,7 @@ func TestMultiContainerSanity(t *testing.T) { } func TestMultiContainerWait(t *testing.T) { + t.Skip("Test is flakey.") // TODO: Remove. containerIDs := []string{ testutil.UniqueContainerID(), testutil.UniqueContainerID(), |