ipn/ipnlocal: skip broken TestOnTailnetDefaultAutoUpdate on macOS

Updates #15691

Change-Id: I131aed8bcd83be8e97399c905683e046381c9106
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
pull/15697/head
Brad Fitzpatrick 8 months ago committed by Brad Fitzpatrick
parent 60614fa4e5
commit 4107056612

@ -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

Loading…
Cancel
Save