|
|
|
@ -36,6 +36,7 @@ import (
|
|
|
|
gossh "golang.org/x/crypto/ssh"
|
|
|
|
gossh "golang.org/x/crypto/ssh"
|
|
|
|
"golang.org/x/net/http2"
|
|
|
|
"golang.org/x/net/http2"
|
|
|
|
"golang.org/x/net/http2/h2c"
|
|
|
|
"golang.org/x/net/http2/h2c"
|
|
|
|
|
|
|
|
"tailscale.com/cmd/testwrapper/flakytest"
|
|
|
|
"tailscale.com/ipn/ipnlocal"
|
|
|
|
"tailscale.com/ipn/ipnlocal"
|
|
|
|
"tailscale.com/ipn/store/mem"
|
|
|
|
"tailscale.com/ipn/store/mem"
|
|
|
|
"tailscale.com/net/memnet"
|
|
|
|
"tailscale.com/net/memnet"
|
|
|
|
@ -489,6 +490,8 @@ func newSSHRule(action *tailcfg.SSHAction) *tailcfg.SSHRule {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func TestSSHRecordingCancelsSessionsOnUploadFailure(t *testing.T) {
|
|
|
|
func TestSSHRecordingCancelsSessionsOnUploadFailure(t *testing.T) {
|
|
|
|
|
|
|
|
flakytest.Mark(t, "https://github.com/tailscale/tailscale/issues/7707")
|
|
|
|
|
|
|
|
|
|
|
|
if runtime.GOOS != "linux" && runtime.GOOS != "darwin" {
|
|
|
|
if runtime.GOOS != "linux" && runtime.GOOS != "darwin" {
|
|
|
|
t.Skipf("skipping on %q; only runs on linux and darwin", runtime.GOOS)
|
|
|
|
t.Skipf("skipping on %q; only runs on linux and darwin", runtime.GOOS)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|