forked from stan-dev/stan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runTests.py
executable file
·153 lines (135 loc) · 4.57 KB
/
runTests.py
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#!/usr/bin/python
"""
replacement for runtest target in Makefile
arg 1: test dir or test file
"""
import os
import os.path
import platform
import sys
import subprocess
import time
winsfx = ".exe"
testsfx = "_test.cpp"
debug = False
batchSize = 25
def usage():
sys.stdout.write('usage: %s <path/test/dir(/files)>\n' % sys.argv[0])
sys.stdout.write('or\n')
sys.stdout.write(' %s -j<#cores> <path/test/dir(/files)>\n' % sys.argv[0])
sys.exit(0)
def stopErr(msg, returncode):
sys.stderr.write('%s\n' % msg)
sys.stderr.write('exit now (%s)\n' % time.strftime('%x %X %Z'))
sys.exit(returncode)
def isWin():
if (platform.system().lower().startswith("windows")
or platform.system().lower().startswith("cygwin")
or os.name.lower().startswith("windows")):
return True
return False
# set up good makefile target name
def mungeName(name):
if (name.startswith("src")):
name = name.replace("src/","",1)
if (name.endswith(testsfx)):
name = name.replace(testsfx,"")
if (isWin()):
name += winsfx
name = name.replace("\\","/")
return name
def doCommand(command):
print("------------------------------------------------------------")
print("%s" % command)
p1 = subprocess.Popen(command,shell=True)
p1.wait()
if (not(p1.returncode == None) and not(p1.returncode == 0)):
stopErr('%s failed' % command, p1.returncode)
def makeTest(name, j):
target = mungeName(name)
if (j == None):
command = 'make %s' % target
else:
command = 'make -j%d %s' % (j,target)
doCommand(command)
def makeTests(dirname, filenames, j):
targets = list()
for name in filenames:
if (not name.endswith(testsfx)):
continue
target = "/".join([dirname,name])
target = mungeName(target)
targets.append(target)
if (len(targets) > 0):
if (debug):
print('# targets: %d' % len(targets))
startIdx = 0
endIdx = batchSize
while (startIdx < len(targets)):
if (j == None):
command = 'make %s' % ' '.join(targets[startIdx:endIdx])
else:
command = 'make -j%d %s' % (j,' '.join(targets[startIdx:endIdx]))
if (debug):
print('start %d, end %d' % (startIdx,endIdx))
print(command)
doCommand(command)
startIdx = endIdx
endIdx = startIdx + batchSize
if (endIdx > len(targets)):
endIdx = len(targets)
def runTest(name):
executable = mungeName(name).replace("/",os.sep)
xml = mungeName(name).replace(winsfx, "")
command = '%s --gtest_output="xml:%s.xml"' % (executable, xml)
doCommand(command)
def main():
if (len(sys.argv) < 2):
usage()
argsIdx = 1
j = None
if (sys.argv[1].startswith("-j")):
argsIdx = 2
if (len(sys.argv) < 3):
usage()
else:
j = sys.argv[1].replace("-j","")
try:
jprime = int(j)
if (jprime < 1 or jprime > 16):
stopErr("bad value for -j flag",-1)
j = jprime
except ValueError:
stopErr("bad value for -j flag",-1)
# pass 1: call make to compile test targets
for i in range(argsIdx,len(sys.argv)):
testname = sys.argv[i]
if (not(os.path.exists(testname))):
stopErr('%s: no such file or directory' % testname,-1)
if (not(os.path.isdir(testname))):
if (not(testname.endswith(testsfx))):
stopErr('%s: not a testfile' % testname,-1)
if (debug):
print("make single test: %s" % testname)
makeTest(testname,j)
else:
for root, dirs, files in os.walk(testname):
if (debug):
print("make root: %s" % root)
makeTests(root,files,j)
# pass 2: run test targets
for i in range(argsIdx,len(sys.argv)):
testname = sys.argv[i]
if (not(os.path.isdir(testname))):
if (debug):
print("run single test: %s" % testname)
runTest(testname)
else:
for root, dirs, files in os.walk(testname):
for name in files:
if (name.endswith(testsfx)):
if (debug):
print("run dir,test: %s,%s" % (root,name))
runTest(os.sep.join([root,name]))
if __name__ == "__main__":
main()