summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2014-03-25 14:14:31 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2014-03-25 14:14:31 +0000
commit76a72c332373c4ebacf0c1bf45b7372f16d0a079 (patch)
tree630bac8660753f3669c55c9199ba5ff27d3210d8
parent3d550606f30adaf79e325440404d5e61144444ee (diff)
downloadlorry-controller-76a72c332373c4ebacf0c1bf45b7372f16d0a079.tar.gz
Remove now-useless test script
-rwxr-xr-xtest-wait-for-port40
1 files changed, 0 insertions, 40 deletions
diff --git a/test-wait-for-port b/test-wait-for-port
deleted file mode 100755
index 22e07be..0000000
--- a/test-wait-for-port
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/usr/bin/env python
-#
-# Copyright (C) 2014 Codethink Limited
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along
-# with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-
-'''Wait for a given port to be open.
-
-WARNING: This may wait for quite a long time. There is no timeout. Or
-spoon.
-
-'''
-
-import sys, socket, errno
-
-host = sys.argv[1]
-port = int(sys.argv[2])
-
-while True:
- print "Trying %s port %s" % (host, port)
- s = socket.socket()
- try:
- s.connect((host, port))
- except socket.error as e:
- if e.errno == errno.ECONNREFUSED:
- continue
- raise
- s.close()
- break