mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a48b541da3
Signed-off-by: Puneet Pruthi <puneetpruthi@gmail.com>
18 lines
262 B
Go
18 lines
262 B
Go
// +build !linux,!solaris
|
|
|
|
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
|
|
}
|