From f4fe79ad89c773c5fbc3f083e4654fcbbcecf0dc Mon Sep 17 00:00:00 2001 From: Kris Hicks Date: Wed, 27 Jan 2021 07:14:55 -0800 Subject: [PATCH] Backfill unit test for NEWIPC --- drivers/shared/executor/executor_linux_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/shared/executor/executor_linux_test.go b/drivers/shared/executor/executor_linux_test.go index a75abf3ad..ad70c9628 100644 --- a/drivers/shared/executor/executor_linux_test.go +++ b/drivers/shared/executor/executor_linux_test.go @@ -132,6 +132,7 @@ func TestExecutor_IsolationAndConstraints(t *testing.T) { require.Contains(config.Namespaces, lconfigs.Namespace{Type: lconfigs.NEWNS}) require.Contains(config.Namespaces, lconfigs.Namespace{Type: lconfigs.NEWPID}) + require.Contains(config.Namespaces, lconfigs.Namespace{Type: lconfigs.NEWIPC}) // Shut down executor require.NoError(executor.Shutdown("", 0))