From a32ec0c8e2924aca80b14fccc175f5fc360ec992 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Tue, 26 Sep 2017 13:26:20 +0300 Subject: Fix: use random port when running tests --- randport | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 randport (limited to 'randport') diff --git a/randport b/randport new file mode 100755 index 0000000..d523401 --- /dev/null +++ b/randport @@ -0,0 +1,28 @@ +#!/usr/bin/python3 +# +# Copyright (C) 2017 Lars Wirzenius +# +# Pick a random port that is free to be listened on. For testing. + + +import errno +import random +import socket +import sys + + +MAX = 1000 +for i in range(MAX): + port = random.randint(1025, 2**15-1) + s = socket.socket() + try: + s.bind(('0.0.0.0', port)) + except OSError as e: + if e.errno == errno.EADDRINUSE: + continue + raise + break +else: + sys.stderr.write("Can't find a free port\n") + sys.exit(1) +sys.stdout.write('{}\n'.format(port)) -- cgit v1.2.1