diff options
author | Fabricio Voznika <fvoznika@google.com> | 2021-05-27 19:51:54 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-05-27 19:55:03 -0700 |
commit | 394c6089c3b8700164756677f53314d165f8d383 (patch) | |
tree | 61e947c2f697f750851fbd335c7c992fabc7a290 /pkg/test/testutil/BUILD | |
parent | e8fc815b6ef58b6faa136ef239f89ec98a8e55b4 (diff) |
Fix test_app task-tree
Executing `select {}` to wait forever triggers Go runtime deadlock
detection and kills the child, causing the number actual processes
be less than expected.
PiperOrigin-RevId: 376298799
Diffstat (limited to 'pkg/test/testutil/BUILD')
-rw-r--r-- | pkg/test/testutil/BUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/test/testutil/BUILD b/pkg/test/testutil/BUILD index a789c246e..7ff13cf12 100644 --- a/pkg/test/testutil/BUILD +++ b/pkg/test/testutil/BUILD @@ -12,6 +12,7 @@ go_library( ], visibility = ["//:sandbox"], deps = [ + "//pkg/sentry/watchdog", "//pkg/sync", "//runsc/config", "//runsc/specutils", |