Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2008-08-10 08:17:54 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2008-08-10 08:17:54 (GMT)
commit84d4dac9285811aafeee8132e17a0c61b4a47d6d (patch)
tree2dff831b0fc20a285a9c704265a7c70029760bcf /scripts
parent202a653ba3f66df0563d61e402136a219f2c6f30 (diff)
Use lower ports for Xvfb
Diffstat (limited to 'scripts')
-rw-r--r--scripts/check.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check.py b/scripts/check.py
index e6a14bf..c8628be 100644
--- a/scripts/check.py
+++ b/scripts/check.py
@@ -27,7 +27,7 @@ class cmd_check(Command):
def start_xvfb(self, port):
if port is None:
- port = ':%d' % random.randrange(1000, 50000)
+ port = ':%d' % random.randrange(100, 1000)
try:
subprocess.Popen(['Xvfb', '-ac', port],