diff options
author | Fabricio Voznika <fvoznika@google.com> | 2020-07-14 11:59:41 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-07-14 12:02:03 -0700 |
commit | 1bfb556ccdaee28ffea0cbdc37007edb10fa22c4 (patch) | |
tree | d71e231b0d43833196ee272e18940cba717b715a /runsc/container/console_test.go | |
parent | 822fc99ecd65c6c93094d93e005a03ae25989fc9 (diff) |
Prepare boot.Loader to support multi-container TTY
- Combine process creation code that is shared between
root and subcontainer processes
- Move root container information into a struct for
clarity
Updates #2714
PiperOrigin-RevId: 321204798
Diffstat (limited to 'runsc/container/console_test.go')
-rw-r--r-- | runsc/container/console_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runsc/container/console_test.go b/runsc/container/console_test.go index 3813c6b93..995d4e267 100644 --- a/runsc/container/console_test.go +++ b/runsc/container/console_test.go @@ -122,6 +122,7 @@ func TestConsoleSocket(t *testing.T) { for name, conf := range configsWithVFS2(t, all...) { t.Run(name, func(t *testing.T) { spec := testutil.NewSpecWithArgs("true") + spec.Process.Terminal = true _, bundleDir, cleanup, err := testutil.SetupContainer(spec, conf) if err != nil { t.Fatalf("error setting up container: %v", err) |