linuxfwtest_unsupported.go 287 B

123456789101112131415161718
  1. // Copyright (c) Tailscale Inc & AUTHORS
  2. // SPDX-License-Identifier: BSD-3-Clause
  3. //go:build !cgo || !linux
  4. package linuxfwtest
  5. import (
  6. "testing"
  7. )
  8. type SizeInfo struct {
  9. SizeofSocklen uintptr
  10. }
  11. func TestSizes(t *testing.T, si *SizeInfo) {
  12. t.Skip("not supported without cgo")
  13. }