mirror of
https://github.com/tailscale/tailscale.git
synced 2025-01-05 23:07:44 +00:00
ipn/ipnlocal: skip TestOnTailnetDefaultAutoUpdate on macOS for now
While it's broken. Updates #11894 Change-Id: I24698707ffe405471a14ab2683aea7e836531da8 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
parent
7a62dddeac
commit
4f73a26ea5
@ -15,6 +15,7 @@
|
||||
"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
|
||||
|
Loading…
x
Reference in New Issue
Block a user