From 525bc99cfb598c45fd197360eb05e49cf9bd8935 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Sat, 27 Apr 2024 08:34:18 -0700 Subject: [PATCH] ipn/ipnlocal: skip TestOnTailnetDefaultAutoUpdate on macOS for now While it's broken. Updates #11894 Change-Id: I24698707ffe405471a14ab2683aea7e836531da8 Signed-off-by: Brad Fitzpatrick --- ipn/ipnlocal/local_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ipn/ipnlocal/local_test.go b/ipn/ipnlocal/local_test.go index c34c8e67f..6faaa131f 100644 --- a/ipn/ipnlocal/local_test.go +++ b/ipn/ipnlocal/local_test.go @@ -15,6 +15,7 @@ import ( "net/netip" "os" "reflect" + "runtime" "slices" "sync" "testing" @@ -2268,6 +2269,9 @@ func TestPreferencePolicyInfo(t *testing.T) { } func TestOnTailnetDefaultAutoUpdate(t *testing.T) { + if runtime.GOOS == "darwin" { + t.Skip("test broken on macOS; see https://github.com/tailscale/tailscale/issues/11894") + } tests := []struct { desc string before, after opt.Bool