mirror of
https://github.com/tailscale/tailscale.git
synced 2025-05-14 12:48:32 +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"
|
||||
"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…
x
Reference in New Issue
Block a user