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 }