1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
#!/usr/bin/env python2
import sys, os, json, argparse
JSON_CONFIG_FILENAME = os.path.dirname(sys.argv[0]) + '/conf.json'
MAKEFLAGS = "-j12"
BRANCH = 'master'
BUILD_SCRIPT = '/root/clazy/tests/docker/build-clazy.sh'
class DockerTest:
def __init__(self, name, url):
self.name = name
self.url = url
self.ignore_checks = 'none'
self.llvm_root = 'none'
self.extra_cmake_args = 'none'
def read_json_config():
dockerTests = []
if not os.path.exists(JSON_CONFIG_FILENAME):
print "File doesn't exist %s" % (JSON_CONFIG_FILENAME)
return []
f = open(JSON_CONFIG_FILENAME, 'r')
contents = f.read()
f.close()
decoded = json.loads(contents)
if 'tests' in decoded:
tests = decoded['tests']
for test in tests:
if 'name' in test and 'url' in test:
dockerTest = DockerTest(test['name'], test['url'])
if 'llvm_root' in test:
dockerTest.llvm_root = test['llvm_root']
if 'extra_cmake_args' in test:
dockerTest.extra_cmake_args = test['extra_cmake_args']
if 'ignore_checks' in test:
dockerTest.ignore_checks = test['ignore_checks']
dockerTests.append(dockerTest)
return dockerTests
def run_test(dockerTest):
cmd = 'docker run -i -t %s sh %s %s %s %s %s %s' % (dockerTest.url, BUILD_SCRIPT, BRANCH, MAKEFLAGS, dockerTest.ignore_checks, dockerTest.llvm_root, dockerTest.extra_cmake_args)
print cmd
return os.system(cmd) == 0
dockerTests = read_json_config()
parser = argparse.ArgumentParser()
parser.add_argument("-b", "--branch")
parser.add_argument("docker_names", nargs='*', help="Names of the containers to run. Defaults to running all docker containers.")
args = parser.parse_args()
if args.branch is None:
BRANCH = 'master'
else:
BRANCH = args.branch
results = {}
success = True
for test in dockerTests:
if args.docker_names and test.name not in args.docker_names:
continue
results[test.name] = run_test(test)
success = success and results[test.name]
if success:
print "Success!"
else:
for testname in results.keys():
if not results[testname]:
print "Test %s failed!" % testname
sys.exit(0 if success else 1)
|