blob: f1265cb4964ede75acc6fb782d89278040656030 [file] [log] [blame]
Adam Langleyfa50e742014-04-09 13:57:52 -07001// Copyright 2014 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Han-Wen Nienhuys2d394e32013-07-26 14:37:37 -04005package ssh
6
7import (
8 "testing"
9)
10
11func TestAutoPortListenBroken(t *testing.T) {
12 broken := "SSH-2.0-OpenSSH_5.9hh11"
13 works := "SSH-2.0-OpenSSH_6.1"
14 if !isBrokenOpenSSHVersion(broken) {
15 t.Errorf("version %q not marked as broken", broken)
16 }
17 if isBrokenOpenSSHVersion(works) {
18 t.Errorf("version %q marked as broken", works)
19 }
20}