summaryrefslogtreecommitdiffhomepage
path: root/runsc/container/container_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'runsc/container/container_test.go')
-rw-r--r--runsc/container/container_test.go13
1 files 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
}