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:
Brad Fitzpatrick 2025-04-15 09:18:55 -07:00 committed by Brad Fitzpatrick
parent 60614fa4e5
commit 4107056612

View File

@ -15,6 +15,7 @@ import (
"os"
"path/filepath"
"reflect"
"runtime"
"slices"
"strings"
"sync"
@ -2596,6 +2597,9 @@ func TestPreferencePolicyInfo(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 {
before, after opt.Bool
container opt.Bool