From d0b10516d6fc1cf10ed140e949cfff44a1ecaa21 Mon Sep 17 00:00:00 2001 From: Andrea Luzzardi Date: Tue, 3 Mar 2015 17:39:55 -0800 Subject: [PATCH] integration: Remove manage-non-available-node test. It makes integration tests run really slow. Signed-off-by: Andrea Luzzardi --- test/integration/manage-non-available-node.bats | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 test/integration/manage-non-available-node.bats diff --git a/test/integration/manage-non-available-node.bats b/test/integration/manage-non-available-node.bats deleted file mode 100644 index 8aa524ffe7..0000000000 --- a/test/integration/manage-non-available-node.bats +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env bats - -load vars - -@test "managing non-available node should be timed out" { - - # - # timeout does not accept a bash function, so hard-coded path is required - # - run timeout 15s $GOBIN/swarm manage -H 127.0.0.1:2375 nodes://8.8.8.8:2375 - - [ "$status" -ne 0 ] - [[ ${lines[0]} =~ "Listening for HTTP" ]] - [[ ${lines[1]} =~ "ConnectEx tcp: i/o timeout" ]] -}