mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 19:45:35 +00:00
7c1d6e35a5
Updates #11058 Change-Id: I35e7ef9b90e83cac04ca93fd964ad00ed5b48430 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
17 lines
275 B
Go
17 lines
275 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
package interfaces
|
|
|
|
import "testing"
|
|
|
|
func BenchmarkGetPACWindows(b *testing.B) {
|
|
b.ReportAllocs()
|
|
for i := range b.N {
|
|
v := getPACWindows()
|
|
if i == 0 {
|
|
b.Logf("Got: %q", v)
|
|
}
|
|
}
|
|
}
|