summaryrefslogtreecommitdiffhomepage
path: root/util/linuxfw/linuxfwtest/linuxfwtest_unsupported.go
blob: ec2d24d3521c975112f047829d58d464f4e51ac6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) Tailscale Inc & contributors
// 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")
}