diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-06-24 14:50:49 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-06-24 14:50:49 -0700 |
commit | fdf7c49030c11fae17c6f7bf99344c43654dd258 (patch) | |
tree | 9c7bdfe87f6488be37efa721978c0433f78f2ac4 /pkg/shim/BUILD | |
parent | 7e0c1d9f1eae5620d38a6434c27442a350828876 (diff) | |
parent | b8430201f0046d78ee5ac6229718fa88c5246c96 (diff) |
Merge pull request #6228 from puppetlabs:fix-shim-pid-leaking-on-stopped-processes
PiperOrigin-RevId: 381341920
Diffstat (limited to 'pkg/shim/BUILD')
-rw-r--r-- | pkg/shim/BUILD | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/pkg/shim/BUILD b/pkg/shim/BUILD index 367765209..b115556f5 100644 --- a/pkg/shim/BUILD +++ b/pkg/shim/BUILD @@ -8,6 +8,7 @@ go_library( "api.go", "debug.go", "epoll.go", + "errors.go", "options.go", "service.go", "service_linux.go", @@ -44,6 +45,8 @@ go_library( "@com_github_gogo_protobuf//types:go_default_library", "@com_github_opencontainers_runtime_spec//specs-go:go_default_library", "@com_github_sirupsen_logrus//:go_default_library", + "@org_golang_google_grpc//codes:go_default_library", + "@org_golang_google_grpc//status:go_default_library", "@org_golang_x_sys//unix:go_default_library", ], ) @@ -51,10 +54,14 @@ go_library( go_test( name = "shim_test", size = "small", - srcs = ["service_test.go"], + srcs = [ + "errors_test.go", + "service_test.go", + ], library = ":shim", deps = [ "//pkg/shim/utils", + "@com_github_containerd_containerd//errdefs:go_default_library", "@com_github_opencontainers_runtime_spec//specs-go:go_default_library", ], ) |