diff options
author | Fabricio Voznika <fvoznika@google.com> | 2018-07-23 13:30:29 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-07-23 13:31:42 -0700 |
commit | d7a34790a0cc3cfdef9d9e54f17c4bc0a6819900 (patch) | |
tree | bfbbfd9e0ad6ad74a15f0c705ad989904eb57a69 /runsc/container/BUILD | |
parent | f543ada15005e6e2d31a63148a74fbdc43d070de (diff) |
Add KVM and overlay dimensions to container_test
PiperOrigin-RevId: 205714667
Change-Id: I317a2ca98ac3bdad97c4790fcc61b004757d99ef
Diffstat (limited to 'runsc/container/BUILD')
-rw-r--r-- | runsc/container/BUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/runsc/container/BUILD b/runsc/container/BUILD index 679d7e097..7ec68f573 100644 --- a/runsc/container/BUILD +++ b/runsc/container/BUILD @@ -26,17 +26,21 @@ go_library( go_test( name = "container_test", - size = "small", + size = "medium", srcs = ["container_test.go"], data = [ "//runsc", ], + tags = [ + "requires-kvm", + ], deps = [ "//pkg/abi/linux", "//pkg/log", "//pkg/sentry/control", "//pkg/sentry/kernel/auth", "//pkg/unet", + "//runsc/boot", "//runsc/container", "//runsc/specutils", "//runsc/test/testutil", |