sandbox_unsupported_test.go 270 B

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