diff options
| author | Brad Fitzpatrick <bradfitz@golang.org> | 2016-07-17 00:14:59 +0000 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2016-07-17 04:49:09 +0000 |
| commit | f28b56427a527c2e35c0bcac123f0a6a8a943cd3 (patch) | |
| tree | a74c6e6918656fa9c0bc38ae57b3181da221e7eb /ssh/client_auth_test.go | |
| parent | 10c26747e67d76ad4fafe6087c6f4073c3b22942 (diff) | |
| download | go-x-crypto-f28b56427a527c2e35c0bcac123f0a6a8a943cd3.tar.xz | |
ssh: disable known-flaky test from the Go build dashboard
This failure is tracked already. Remove it from the dashboard
while it's fixed so it doesn't hide more interesting failures.
Updates golang/go#15198
Change-Id: Ib48d1e37ac97914ac082b2602c812151147393e4
Reviewed-on: https://go-review.googlesource.com/24986
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'ssh/client_auth_test.go')
| -rw-r--r-- | ssh/client_auth_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ssh/client_auth_test.go b/ssh/client_auth_test.go index 5bd8c2b..548a9b9 100644 --- a/ssh/client_auth_test.go +++ b/ssh/client_auth_test.go @@ -9,6 +9,7 @@ import ( "crypto/rand" "errors" "fmt" + "os" "strings" "testing" ) @@ -243,6 +244,9 @@ func TestClientUnsupportedCipher(t *testing.T) { } func TestClientUnsupportedKex(t *testing.T) { + if os.Getenv("GO_BUILDER_NAME") != "" { + t.Skip("skipping known-flaky test on the Go build dashboard; see golang.org/issue/15198") + } config := &ClientConfig{ User: "testuser", Auth: []AuthMethod{ |
