|
| 1 | +#!/usr/bin/python |
| 2 | + |
| 3 | +""" |
| 4 | +replacement for runtest target in Makefile |
| 5 | +arg 1: test dir or test file |
| 6 | +""" |
| 7 | + |
| 8 | +import os |
| 9 | +import os.path |
| 10 | +import platform |
| 11 | +import sys |
| 12 | +import subprocess |
| 13 | +import time |
| 14 | + |
| 15 | +winsfx = ".exe" |
| 16 | +testsfx = "_test.cpp" |
| 17 | +debug = False |
| 18 | +batchSize = 25 |
| 19 | + |
| 20 | +def usage(): |
| 21 | + sys.stdout.write('usage: %s <path/test/dir(/files)>\n' % sys.argv[0]) |
| 22 | + sys.stdout.write('or\n') |
| 23 | + sys.stdout.write(' %s -j<#cores> <path/test/dir(/files)>\n' % sys.argv[0]) |
| 24 | + sys.exit(0) |
| 25 | + |
| 26 | +def stopErr(msg, returncode): |
| 27 | + sys.stderr.write('%s\n' % msg) |
| 28 | + sys.stderr.write('exit now (%s)\n' % time.strftime('%x %X %Z')) |
| 29 | + sys.exit(returncode) |
| 30 | + |
| 31 | +def isWin(): |
| 32 | + if (platform.system().lower().startswith("windows") |
| 33 | + or os.name.lower().startswith("windows")): |
| 34 | + return True |
| 35 | + return False |
| 36 | + |
| 37 | +# set up good makefile target name |
| 38 | +def mungeName(name): |
| 39 | + if (debug): |
| 40 | + print("munge input: %s" % name) |
| 41 | + if (name.startswith("src")): |
| 42 | + name = name.replace("src/","",1) |
| 43 | + if (name.endswith(testsfx)): |
| 44 | + name = name.replace(testsfx,"_test") |
| 45 | + if (isWin()): |
| 46 | + name += winsfx |
| 47 | + name = name.replace("\\","/") |
| 48 | + |
| 49 | + name = name.replace(" ", "\\ ").replace("(","\\(").replace(")","\\)") |
| 50 | + if (debug): |
| 51 | + print("munge return: %s" % name) |
| 52 | + return name |
| 53 | + |
| 54 | + |
| 55 | +def doCommand(command): |
| 56 | + print("------------------------------------------------------------") |
| 57 | + print("%s" % command) |
| 58 | + p1 = subprocess.Popen(command,shell=True) |
| 59 | + p1.wait() |
| 60 | + if (not(p1.returncode == None) and not(p1.returncode == 0)): |
| 61 | + stopErr('%s failed' % command, p1.returncode) |
| 62 | + |
| 63 | +def makeTest(name, j): |
| 64 | + target = mungeName(name) |
| 65 | + if (j == None): |
| 66 | + command = 'make %s' % target |
| 67 | + else: |
| 68 | + command = 'make -j%d %s' % (j,target) |
| 69 | + doCommand(command) |
| 70 | + |
| 71 | +def makeBuild(j): |
| 72 | + if (j == None): |
| 73 | + command = 'make build' |
| 74 | + else: |
| 75 | + command = 'make -j%d build' % j |
| 76 | + doCommand(command) |
| 77 | + |
| 78 | + |
| 79 | +def makeTestModel(target, j): |
| 80 | + if (j == None): |
| 81 | + command = 'make %s' % target |
| 82 | + else: |
| 83 | + command = 'make -j%d %s' % (j,target) |
| 84 | + doCommand(command) |
| 85 | + |
| 86 | + |
| 87 | +def makeTests(dirname, filenames, j): |
| 88 | + targets = list() |
| 89 | + for name in filenames: |
| 90 | + if (not name.endswith(testsfx)): |
| 91 | + continue |
| 92 | + target = "/".join([dirname,name]) |
| 93 | + target = mungeName(target) |
| 94 | + targets.append(target) |
| 95 | + if (len(targets) > 0): |
| 96 | + if (debug): |
| 97 | + print('# targets: %d' % len(targets)) |
| 98 | + startIdx = 0 |
| 99 | + endIdx = batchSize |
| 100 | + while (startIdx < len(targets)): |
| 101 | + if (j == None): |
| 102 | + command = 'make %s' % ' '.join(targets[startIdx:endIdx]) |
| 103 | + else: |
| 104 | + command = 'make -j%d %s' % (j,' '.join(targets[startIdx:endIdx])) |
| 105 | + if (debug): |
| 106 | + print('start %d, end %d' % (startIdx,endIdx)) |
| 107 | + print(command) |
| 108 | + doCommand(command) |
| 109 | + startIdx = endIdx |
| 110 | + endIdx = startIdx + batchSize |
| 111 | + if (endIdx > len(targets)): |
| 112 | + endIdx = len(targets) |
| 113 | + |
| 114 | + |
| 115 | +def runTest(name): |
| 116 | + executable = mungeName(name).replace("/",os.sep) |
| 117 | + xml = mungeName(name).replace(winsfx, "") |
| 118 | + command = '%s --gtest_output="xml:%s.xml"' % (executable, xml) |
| 119 | + doCommand(command) |
| 120 | + |
| 121 | +def main(): |
| 122 | + if (len(sys.argv) < 2): |
| 123 | + usage() |
| 124 | + |
| 125 | + argsIdx = 1 |
| 126 | + j = None |
| 127 | + if (sys.argv[1].startswith("-j")): |
| 128 | + argsIdx = 2 |
| 129 | + if (len(sys.argv) < 3): |
| 130 | + usage() |
| 131 | + else: |
| 132 | + j = sys.argv[1].replace("-j","") |
| 133 | + try: |
| 134 | + jprime = int(j) |
| 135 | + if (jprime < 1 or jprime > 16): |
| 136 | + stopErr("bad value for -j flag",-1) |
| 137 | + j = jprime |
| 138 | + except ValueError: |
| 139 | + stopErr("bad value for -j flag",-1) |
| 140 | + |
| 141 | + |
| 142 | + # pass 0: make build |
| 143 | + makeBuild(j) |
| 144 | + |
| 145 | + # pass 1: call make to compile test targets |
| 146 | + for i in range(argsIdx,len(sys.argv)): |
| 147 | + testname = sys.argv[i] |
| 148 | + if (debug): |
| 149 | + print("testname: %s" % testname) |
| 150 | + if (not(os.path.exists(testname))): |
| 151 | + stopErr('%s: no such file or directory' % testname,-1) |
| 152 | + if (not(os.path.isdir(testname))): |
| 153 | + if (not(testname.endswith(testsfx))): |
| 154 | + stopErr('%s: not a testfile' % testname,-1) |
| 155 | + if (debug): |
| 156 | + print("make single test: %s" % testname) |
| 157 | + makeTest(testname,j) |
| 158 | + else: |
| 159 | + for root, dirs, files in os.walk(testname): |
| 160 | + if (debug): |
| 161 | + print("make root: %s" % root) |
| 162 | + makeTests(root,files,j) |
| 163 | + |
| 164 | + # pass 2: run test targets |
| 165 | + for i in range(argsIdx,len(sys.argv)): |
| 166 | + testname = sys.argv[i] |
| 167 | + if (not(os.path.isdir(testname))): |
| 168 | + if (debug): |
| 169 | + print("run single test: %s" % testname) |
| 170 | + runTest(testname) |
| 171 | + else: |
| 172 | + for root, dirs, files in os.walk(testname): |
| 173 | + for name in files: |
| 174 | + if (name.endswith(testsfx)): |
| 175 | + if (debug): |
| 176 | + print("run dir,test: %s,%s" % (root,name)) |
| 177 | + runTest(os.sep.join([root,name])) |
| 178 | + |
| 179 | + |
| 180 | +if __name__ == "__main__": |
| 181 | + main() |
0 commit comments