diff options
author | Kevin Krakauer <krakauer@google.com> | 2018-06-22 14:30:33 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-06-22 14:31:25 -0700 |
commit | 04bdcc7b65ac03eeca9b14608a12067e1205081b (patch) | |
tree | e88ce30df1c5b433f44a51e8cbb211f56f6306dc /runsc/boot/loader_test.go | |
parent | e0e640981282ece051c33700f4e272047fa4e5b6 (diff) |
runsc: Enable waiting on individual containers within a sandbox.
PiperOrigin-RevId: 201742160
Change-Id: Ia9fa1442287c5f9e1196fb117c41536a80f6bb31
Diffstat (limited to 'runsc/boot/loader_test.go')
-rw-r--r-- | runsc/boot/loader_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runsc/boot/loader_test.go b/runsc/boot/loader_test.go index 5ec1084db..15ced0601 100644 --- a/runsc/boot/loader_test.go +++ b/runsc/boot/loader_test.go @@ -133,7 +133,8 @@ func TestStartSignal(t *testing.T) { } // Trigger the control server StartRoot method. - if err := s.ctrl.manager.StartRoot(nil, nil); err != nil { + cid := "foo" + if err := s.ctrl.manager.StartRoot(&cid, nil); err != nil { t.Errorf("error calling StartRoot: %v", err) } |