mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 03:25:35 +00:00
1a9fba5b04
Also remove extra distros for now. We can bring them back later if useful. Though our most important distros are these two Ubuntu, debian stable, and Raspbian (not currently supported). And before doing more Linux, we should do Windows. Signed-off-by: David Crawshaw <crawshaw@tailscale.com>
22 lines
455 B
Go
22 lines
455 B
Go
// Copyright (c) 2021 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.
|
|
|
|
//go:build linux
|
|
// +build linux
|
|
|
|
package vms
|
|
|
|
import "testing"
|
|
|
|
func TestRunUbuntu1804(t *testing.T) {
|
|
t.Parallel()
|
|
setupTests(t)
|
|
testOneDistribution(t, 0, Distros[0])
|
|
}
|
|
func TestRunUbuntu2004(t *testing.T) {
|
|
t.Parallel()
|
|
setupTests(t)
|
|
testOneDistribution(t, 1, Distros[1])
|
|
}
|