tailscale/version/distro/distro_test.go
Brad Fitzpatrick 1a45274d4c
version/distro: detect Ubuntu separately from Debian
(for an upcoming change where I wanted to easily distinguish these
two)

Change-Id: Icb6a0144275cc9bf8978a7cb96b601d516d8da46
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
2022-09-18 10:28:00 -07:00

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)
}