premiere-libtorrent/tools/run_regression_tests.py

70 lines
1.4 KiB
Python
Raw Normal View History

#!/bin/python
import run_tests
import os
import time
2013-06-16 23:04:01 +02:00
import subprocess
import sys
# returns a list of new revisions
def svn_fetch():
current_version = run_tests.svn_info()[0]
p = subprocess.Popen(['svn', 'up'], stdout=subprocess.PIPE)
revision = -1
output = ''
for l in p.stdout:
if 'At revision ' in l:
2013-06-16 23:04:01 +02:00
revision = int(l.split('At revision')[1].strip()[0:-1])
if 'Updated to revision ' in l:
revision = int(l.split('Updated to revision')[1].strip()[0:-1])
output += l
if revision == -1:
2013-06-16 23:51:12 +02:00
print '\n\nsvn update failed\n\n%s' % output
sys.exit(1)
return range(current_version + 1, revision + 1)
def svn_up(revision):
os.system('svn up %d' % revision)
def print_usage():
print '''usage: run_regression_tests.py [options] toolset [toolset...]
toolset are bjam toolsets. For instance clang, gcc, darwin, msvc etc.
The path "./regression_tests" is expected to be a shared folder
between all testsers.
options:
-j<n> use n parallel processes for running tests
'''
def loop():
2013-06-16 23:04:01 +02:00
if len(sys.argv) < 3:
print_usage()
sys.exit(1)
while True:
revs = svn_fetch()
# reverse the list to always run the tests for the
# latest version first, then fill in with the history
revs.reverse()
for r in revs:
print '\n\nREVISION %d ===\n' % r
svn_up(r)
run_tests.main(sys.argv[1:])
time.sleep(120)
if __name__ == "__main__":
loop()