chiark / gitweb /
Leave a bit of headroom above test port number, since we go at least
authorRichard Kettlewell <rjk@greenend.org.uk>
Sat, 18 Jul 2009 12:43:11 +0000 (13:43 +0100)
committerRichard Kettlewell <rjk@greenend.org.uk>
Sat, 18 Jul 2009 12:43:11 +0000 (13:43 +0100)
one above it.  Almost certainly the cause of issue #36.

tests/dtest.py

index e2fed308aadda9a7a0af4a1a88d48c5b303cb8df..8a4644a128e2efc94887ab6d72a9749fdc7e66c5 100644 (file)
@@ -202,10 +202,10 @@ def common_setup():
     os.mkdir(testroot)
     # Choose a port
     global port
-    port = random.randint(49152, 65535)
+    port = random.randint(49152, 65530)
     while not bindable(port + 1):
         print "port %d is not bindable, trying another" % (port + 1)
-        port = random.randint(49152, 65535)
+        port = random.randint(49152, 65530)
     # Log anything sent to that port
     packetlog = "%s/packetlog" % testroot
     subprocess.Popen(["disorder-udplog",