From 3e21d70d5367223e1f8a0b9550b31c71e7fb1691 Mon Sep 17 00:00:00 2001 From: Julien Laffaye Date: Tue, 18 Aug 2015 19:02:23 +0200 Subject: [PATCH] Skip TestConnIPv6 in short mode. --- client_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client_test.go b/client_test.go index 6b4c9a7..cae0a20 100644 --- a/client_test.go +++ b/client_test.go @@ -142,6 +142,10 @@ func TestMultiline(t *testing.T) { // antioche.antioche.eu.org with IPv6 func TestConnIPv6(t *testing.T) { + if testing.Short() { + t.Skip("skipping test in short mode.") + } + c, err := Connect("[2001:660:3302:282a:204:75ff:fe9f:9e11]:21") if err != nil { t.Fatal(err)