Commit f4220e19 authored by Julien Muchembled's avatar Julien Muchembled

Prevent several test_bot instances from launching tests at the same time

This hask is mainly for performance tests, which should be run on a physical
machine that doesn't do anything else.
parent fd8c8a6e
#!/usr/bin/python
import os, subprocess, sys, time
import errno, os, socket, subprocess, sys, time
def clean():
for path, dir_list, file_list in os.walk('.'):
......@@ -49,6 +49,16 @@ def main():
delay = None
while True:
delay = delay and time.sleep(delay) or 1800
s = socket.socket(socket.AF_UNIX, socket.SOCK_DGRAM)
try:
while True:
try:
s.bind("\0neo.tools.test_bot")
break
except socket.error, e:
if e.errno != errno.EADDRINUSE:
raise
time.sleep(60)
old_revision = revision
try:
_git('fetch')
......@@ -59,14 +69,15 @@ def main():
if revision == old_revision:
continue
if test_bot_revision != getRevision(test_bot):
os.execvp(sys.argv[0], sys.argv)
break
delay = None
for test_home in sys.argv[arg_count:]:
test_home, tasks = test_home.rsplit('=', 1)
tests = ''.join(x for x in tasks if x in 'fuz')
bin = os.path.join(test_home, 'bin')
if not subprocess.call((os.path.join(bin, 'buildout'), '-v'),
if subprocess.call((os.path.join(bin, 'buildout'), '-v'),
cwd=test_home):
continue
title = '[%s:%s-g%s:%s]' % (branch,
git('rev-list', '--topo-order', '--count', revision),
revision[:7], os.path.basename(test_home))
......@@ -82,7 +93,10 @@ def main():
'--min-replicas=0', '--max-replicas=3',
'--title', 'Matrix ' + title,
] + sys.argv[1:arg_count])
finally:
s.close()
clean()
os.execvp(sys.argv[0], sys.argv)
if __name__ == '__main__':
sys.exit(main())
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment