mirror of
https://github.com/tailscale/tailscale.git
synced 2025-07-12 16:48:40 +00:00
ipn/ipnlocal: skip broken TestOnTailnetDefaultAutoUpdate on macOS
Updates #15691 Change-Id: I131aed8bcd83be8e97399c905683e046381c9106 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
parent
60614fa4e5
commit
4107056612
@ -15,6 +15,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
"runtime"
|
||||||
"slices"
|
"slices"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
@ -2596,6 +2597,9 @@ func TestPreferencePolicyInfo(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestOnTailnetDefaultAutoUpdate(t *testing.T) {
|
func TestOnTailnetDefaultAutoUpdate(t *testing.T) {
|
||||||
|
if runtime.GOOS == "darwin" {
|
||||||
|
t.Skip("test known broken on macOS; see https://github.com/tailscale/tailscale/issues/15691")
|
||||||
|
}
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
before, after opt.Bool
|
before, after opt.Bool
|
||||||
container opt.Bool
|
container opt.Bool
|
||||||
|
Loading…
x
Reference in New Issue
Block a user