We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eadac5 commit 325b735Copy full SHA for 325b735
ssh/test/sshcli_test.go
@@ -10,6 +10,7 @@ import (
10
"os"
11
"os/exec"
12
"path/filepath"
13
+ "runtime"
14
"testing"
15
16
"golang.org/x/crypto/internal/testenv"
@@ -34,6 +35,9 @@ func sshClient(t *testing.T) string {
34
35
}
36
37
func TestSSHCLIAuth(t *testing.T) {
38
+ if runtime.GOOS == "windows" {
39
+ t.Skipf("always fails on Windows, see #64403")
40
+ }
41
sshCLI := sshClient(t)
42
dir := t.TempDir()
43
keyPrivPath := filepath.Join(dir, "rsa")
0 commit comments