forked from stan-dev/math
-
Notifications
You must be signed in to change notification settings - Fork 0
/
runTests.py
executable file
·178 lines (140 loc) · 5.79 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
#!/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"
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)
f_help_msg = "Only tests with file names matching these will be executed.\n"
f_help_msg += "Example: '-f chol', '-f opencl', '-f prim'"
parser.add_argument("-f", type=str, default = [], action="append",
help=f_help_msg)
parser.add_argument("-d", "--debug", dest="debug", action="store_true",
help="request additional script debugging output.")
parser.add_argument("-m", "--make-only", dest="make_only",
action="store_true", help="Don't run tests, just try to make them.")
parser.add_argument("--run-all", dest="run_all", action="store_true",
help="Don't stop at the first test failure, run all of them.")
# 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():
return (platform.system().lower().startswith("windows")
or os.name.lower().startswith("windows"))
batchSize = 20 if isWin() else 200
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, exit_on_failure=True):
"""Run command as a shell command and report/exit on errors."""
print("------------------------------------------------------------")
print("%s" % command)
p1 = subprocess.Popen(command, shell=True)
p1.wait()
if exit_on_failure and (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."""
doCommand('make -j%d generate-tests -s' % (j or 1))
def makeTest(name, j):
"""Run the make command for a given single test."""
doCommand('make -j%d %s' % (j or 1, name))
def commandExists(command):
p = subprocess.Popen(command, shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
p.wait()
return p.returncode != 127
def runTest(name, run_all=False, mpi=False, j=1):
executable = mungeName(name).replace("/", os.sep)
xml = mungeName(name).replace(winsfx, "")
command = '%s --gtest_output="xml:%s.xml"' % (executable, xml)
if mpi:
if not commandExists("mpirun"):
stopErr("Error: need to have mpi (and mpirun) installed to run mpi tests"
+ "\nCheck https://github.com/stan-dev/stan/wiki/Parallelism-using-MPI-in-Stan for more details."
, -1)
if "mpi_" in name:
j = j > 2 and j or 2
else:
j = 1
command = "mpirun -np {} {}".format(j, command)
doCommand(command, not run_all)
def findTests(base_path, filter_names):
folders = filter(os.path.isdir, base_path)
nonfolders = list(set(base_path) - set(folders))
tests = nonfolders + [os.path.join(root, n)
for f in folders
for root, _, names in os.walk(f)
for n in names
if n.endswith(testsfx)]
tests = map(mungeName, tests)
tests = [test
for test in tests
if all(filter_name in test
for filter_name in filter_names)]
return tests
def batched(tests):
return [tests[i:i + batchSize] for i in range(0, len(tests), batchSize)]
def main():
inputs = processCLIArgs()
try:
with open("make/local") as f:
stan_mpi = "STAN_MPI" in f.read()
except IOError:
stan_mpi = False
# pass 0: generate all auto-generated tests
if any(['test/prob' in arg for arg in inputs.tests]):
generateTests(inputs.j)
tests = findTests(inputs.tests, inputs.f)
if not tests:
stopErr("No matching tests found.", -1)
if inputs.debug:
print("Collected the following tests:\n", tests)
# pass 1: make test executables
for batch in batched(tests):
if inputs.debug:
print("Test batch: ", batch)
makeTest(" ".join(batch), inputs.j)
if not inputs.make_only:
# pass 2: run test targets
for t in tests:
if inputs.debug:
print("run single test: %s" % testname)
runTest(t, inputs.run_all, mpi = stan_mpi, j = inputs.j)
if __name__ == "__main__":
main()