mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9f0b3f5609
full diff: https://github.com/gotestyourself/gotest.tools/compare/v2.3.0...v3.0.1 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
24 lines
623 B
Go
24 lines
623 B
Go
// +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 := &config.Config{}
|
|
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()))
|
|
}
|