mirror of
https://github.com/tailscale/tailscale.git
synced 2024-12-14 04:04:42 +00:00
1a45274d4c
(for an upcoming change where I wanted to easily distinguish these two) Change-Id: Icb6a0144275cc9bf8978a7cb96b601d516d8da46 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
22 lines
391 B
Go
22 lines
391 B
Go
// Copyright (c) 2022 Tailscale Inc & AUTHORS All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package distro
|
|
|
|
import "testing"
|
|
|
|
func BenchmarkGet(b *testing.B) {
|
|
b.ReportAllocs()
|
|
var d Distro
|
|
for i := 0; i < b.N; i++ {
|
|
d = Get()
|
|
}
|
|
_ = d
|
|
}
|
|
|
|
func TestGet(t *testing.T) {
|
|
d := Get()
|
|
t.Logf("Get = %q", d)
|
|
}
|