For obvious reasons that it is not really supported now. Signed-off-by: Michael Crosby <crosbymichael@gmail.com> Upstream-commit: 5a9b5f10cf967f31f0856871ad08f9a0286b4a46 Component: engine
23 lines
570 B
Go
23 lines
570 B
Go
// +build linux,!solaris freebsd,!solaris
|
|
|
|
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/docker/docker/daemon/config"
|
|
"github.com/spf13/pflag"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestDaemonParseShmSize(t *testing.T) {
|
|
flags := pflag.NewFlagSet("test", pflag.ContinueOnError)
|
|
|
|
conf := &config.Config{}
|
|
installConfigFlags(conf, flags)
|
|
// By default `--default-shm-size=64M`
|
|
assert.Equal(t, int64(64*1024*1024), conf.ShmSize.Value())
|
|
assert.NoError(t, flags.Set("default-shm-size", "128M"))
|
|
assert.Equal(t, int64(128*1024*1024), conf.ShmSize.Value())
|
|
}
|