sandbox_unsupported_test.go 253 B

123456789101112131415161718
  1. //go:build !linux
  2. package osl
  3. import (
  4. "errors"
  5. "testing"
  6. )
  7. var ErrNotImplemented = errors.New("not implemented")
  8. func newKey(t *testing.T) (string, error) {
  9. return "", ErrNotImplemented
  10. }
  11. func verifySandbox(t *testing.T, s Sandbox) {
  12. return
  13. }