276a452f17
Solaris support for Docker will likely not reach completion, so removing these files as they are not in use and not maintained. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
18 lines
253 B
Go
18 lines
253 B
Go
// +build !linux
|
|
|
|
package osl
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
)
|
|
|
|
var ErrNotImplemented = errors.New("not implemented")
|
|
|
|
func newKey(t *testing.T) (string, error) {
|
|
return nil, ErrNotImplemented
|
|
}
|
|
|
|
func verifySandbox(t *testing.T, s Sandbox) {
|
|
return
|
|
}
|