summaryrefslogtreecommitdiffhomepage
path: root/util/linuxfw/linuxfwtest/linuxfwtest_unsupported.go
blob: 6e95699001d4beab4b84ceddf3acaec53d38a56f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: BSD-3-Clause

//go:build !cgo || !linux

package linuxfwtest

import (
	"testing"
)

type SizeInfo struct {
	SizeofSocklen uintptr
}

func TestSizes(t *testing.T, si *SizeInfo) {
	t.Skip("not supported without cgo")
}