// Copyright (c) Tailscale Inc & AUTHORS // SPDX-License-Identifier: BSD-3-Clause package distro import "testing" func BenchmarkGet(b *testing.B) { b.ReportAllocs() var d Distro for i := 0; i < b.N; i++ { d = Get() } _ = d }