From 9752174a7f211328c0ff59f8ed6c51325a6fc23d Mon Sep 17 00:00:00 2001 From: Fabricio Voznika Date: Mon, 6 Aug 2018 18:07:15 -0700 Subject: [PATCH] Disable KVM dimension because it's making the test flaky PiperOrigin-RevId: 207642348 Change-Id: Iacec9f097ab93b91c0c8eea61b1347e864f57a8b --- runsc/container/container_test.go | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/runsc/container/container_test.go b/runsc/container/container_test.go index 7953f3380..9e38f5f77 100644 --- a/runsc/container/container_test.go +++ b/runsc/container/container_test.go @@ -212,12 +212,13 @@ func configs(opts configOptions) []*boot.Config { cs = append(cs, c) } - // TODO: KVM doesn't work with --race. - if !testutil.RaceEnabled && opts&kvm != 0 { - c := testutil.TestConfig() - c.Platform = boot.PlatformKVM - cs = append(cs, c) - } + // TODO: KVM tests are flaky. Disable until fixed. + // // TODO: KVM doesn't work with --race. + // if !testutil.RaceEnabled && opts&kvm != 0 { + // c := testutil.TestConfig() + // c.Platform = boot.PlatformKVM + // cs = append(cs, c) + // } return cs }