diff options
author | Michael Crosby <crosbymichael@gmail.com> | 2017-10-24 14:32:52 -0400 |
---|---|---|
committer | Michael Crosby <crosbymichael@gmail.com> | 2017-10-24 15:39:34 -0400 |
commit | 5a9b5f10cf967f31f0856871ad08f9a0286b4a46 (patch) | |
tree | d4e1fb2673d0829c2d71757661a730ed0f907572 /cmd/dockerd/config_unix_test.go | |
parent | 7848b8beb9d38a98a78b75f78e05f8d2255f9dfe (diff) | |
download | docker-5a9b5f10cf967f31f0856871ad08f9a0286b4a46.tar.gz |
Remove solaris files
For obvious reasons that it is not really supported now.
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
Diffstat (limited to 'cmd/dockerd/config_unix_test.go')
-rw-r--r-- | cmd/dockerd/config_unix_test.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/cmd/dockerd/config_unix_test.go b/cmd/dockerd/config_unix_test.go index 99b2f90b40..588ac19fbd 100644 --- a/cmd/dockerd/config_unix_test.go +++ b/cmd/dockerd/config_unix_test.go @@ -3,7 +3,6 @@ package main import ( - "runtime" "testing" "github.com/docker/docker/daemon/config" @@ -12,9 +11,6 @@ import ( ) func TestDaemonParseShmSize(t *testing.T) { - if runtime.GOOS == "solaris" { - t.Skip("ShmSize not supported on Solaris\n") - } flags := pflag.NewFlagSet("test", pflag.ContinueOnError) conf := &config.Config{} |