diff --git a/integration/container/ipcmode_linux_test.go b/integration/container/ipcmode_linux_test.go index cf4d207100..8eefdc2c9e 100644 --- a/integration/container/ipcmode_linux_test.go +++ b/integration/container/ipcmode_linux_test.go @@ -99,7 +99,7 @@ func TestIpcModeNone(t *testing.T) { testIpcNonePrivateShareable(t, "none", false, false) } -// TestAPIIpcModePrivate checks the container private IPC mode +// TestIpcModePrivate checks the container private IPC mode // (--ipc private) works as expected. It gets the minor:major pair // of /dev/shm mount from the container, and makes sure there is no // such pair on the host. @@ -109,7 +109,7 @@ func TestIpcModePrivate(t *testing.T) { testIpcNonePrivateShareable(t, "private", true, false) } -// TestAPIIpcModeShareable checks the container shareable IPC mode +// TestIpcModeShareable checks the container shareable IPC mode // (--ipc shareable) works as expected. It gets the minor:major pair // of /dev/shm mount from the container, and makes sure such pair // also exists on the host. @@ -173,7 +173,7 @@ func testIpcContainer(t *testing.T, donorMode string, mustWork bool) { assert.Check(t, is.Equal(true, regexp.MustCompile("^covfefe$").MatchString(out))) } -// TestAPIIpcModeShareableAndPrivate checks that +// TestAPIIpcModeShareableAndContainer checks that // 1) a container created with --ipc container:ID can use IPC of another shareable container. // 2) a container created with --ipc container:ID can NOT use IPC of another private container. func TestAPIIpcModeShareableAndContainer(t *testing.T) {