forked from stan-dev/math
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunTests.py
executable file
·194 lines (147 loc) · 5.74 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
#!/usr/bin/python
"""
Replacement for runtest target in Makefile.
Call script with '-h' as an option to see a helpful message.
"""
from __future__ import print_function
from argparse import ArgumentParser, RawTextHelpFormatter
import os
import os.path
import platform
import subprocess
import sys
import time
winsfx = ".exe"
testsfx = "_test.cpp"
batchSize = 25
def processCLIArgs():
"""
Define and process the command line interface to the runTests.py script.
"""
cli_description = "Generate and run stan math library tests."
cli_epilog = "See more information at: https://github.com/stan-dev/math"
parser = ArgumentParser(description=cli_description,
epilog=cli_epilog,
formatter_class=RawTextHelpFormatter)
# Now define all the rules of the command line args and opts
parser.add_argument("-j", metavar="N", type=int, default=1,
help="number of cores for make to use")
tests_help_msg = "The path(s) to the test case(s) to run.\n"
tests_help_msg += "Example: 'test/unit', 'test/prob', and/or\n"
tests_help_msg += " 'test/unit/math/prim/scal/fun/abs_test.cpp'"
parser.add_argument("tests", nargs="+", type=str,
help=tests_help_msg)
parser.add_argument("-d", "--debug", dest="debug", action="store_true",
help="request additional script debugging output.")
# And parse the command line against those rules
return parser.parse_args()
def stopErr(msg, returncode):
"""Report an error message to stderr and exit with a given code."""
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 os.name.lower().startswith("windows")):
return True
return False
def mungeName(name):
"""Set up the makefile target name"""
if (name.endswith(testsfx)):
name = name.replace(testsfx, "_test")
if (isWin()):
name += winsfx
name = name.replace("\\", "/")
return name
def doCommand(command):
"""Run command as a shell command and report/exit on errors."""
print("------------------------------------------------------------")
print("%s" % command)
p1 = subprocess.Popen(command, shell=True)
p1.wait()
if (not(p1.returncode is None) and not(p1.returncode == 0)):
stopErr('%s failed' % command, p1.returncode)
def generateTests(j):
"""Generate all tests and pass along the j parameter to make."""
if j is None:
command = 'make generate-tests -s'
else:
command = 'make -j%d generate-tests -s' % j
doCommand(command)
def makeTest(name, j):
"""Run the make command for a given single test."""
target = mungeName(name)
if j is None:
command = 'make %s' % target
else:
command = 'make -j%d %s' % (j, target)
doCommand(command)
def makeTests(dirname, filenames, j, debug):
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 is 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():
inputs = processCLIArgs()
# pass 0: generate all auto-generated tests
if any(['test/prob' in arg for arg in inputs.tests]):
generateTests(inputs.j)
# pass 1: call make to compile test targets
for testname in inputs.tests:
# Ensure that the test actually exists at all
if (not(os.path.exists(testname))):
stopErr('%s: no such file or directory' % testname, -1)
# If it exists and is a not a directory, run that one test
if (not(os.path.isdir(testname))):
if (not(testname.endswith(testsfx))):
stopErr('%s: not a testfile' % testname, -1)
if (inputs.debug):
print("make single test: %s" % testname)
makeTest(testname, inputs.j)
# If it exists and is a directory, run all tests inside
else:
for root, dirs, files in os.walk(testname):
if (inputs.debug):
print("make root: %s" % root)
makeTests(root, files, inputs.j, inputs.debug)
# pass 2: run test targets
for testname in inputs.tests:
if (not(os.path.isdir(testname))):
if (inputs.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 (inputs.debug):
print("run dir,test: %s,%s" % (root, name))
runTest(os.sep.join([root, name]))
if __name__ == "__main__":
main()