mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b28e66cf4f
This centralizes more defaults, to be part of the config struct that's created, instead of interweaving the defaults with other code in various places. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
26 lines
676 B
Go
26 lines
676 B
Go
//go:build linux || freebsd
|
|
// +build linux freebsd
|
|
|
|
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/docker/docker/daemon/config"
|
|
"github.com/spf13/pflag"
|
|
"gotest.tools/v3/assert"
|
|
is "gotest.tools/v3/assert/cmp"
|
|
)
|
|
|
|
func TestDaemonParseShmSize(t *testing.T) {
|
|
flags := pflag.NewFlagSet("test", pflag.ContinueOnError)
|
|
|
|
conf, err := config.New()
|
|
assert.NilError(t, err)
|
|
err = installConfigFlags(conf, flags)
|
|
assert.NilError(t, err)
|
|
// By default `--default-shm-size=64M`
|
|
assert.Check(t, is.Equal(int64(64*1024*1024), conf.ShmSize.Value()))
|
|
assert.Check(t, flags.Set("default-shm-size", "128M"))
|
|
assert.Check(t, is.Equal(int64(128*1024*1024), conf.ShmSize.Value()))
|
|
}
|