forked from kripken/ammo.js
-
Notifications
You must be signed in to change notification settings - Fork 11
/
test.py
85 lines (70 loc) · 2.22 KB
/
test.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
import os, sys, re, json
from subprocess import Popen, PIPE, STDOUT
# By default use builds/ammo.js. Or the commandline argument can override that.
build = os.path.join('builds', 'ammo.js')
if len(sys.argv) > 1:
build = sys.argv[1]
print 'Using build:', build
build = os.path.basename(build)
exec(open(os.path.expanduser('~/.emscripten'), 'r').read())
if SPIDERMONKEY_ENGINE:
JS_ENGINE = SPIDERMONKEY_ENGINE
elif V8_ENGINE:
JS_ENGINE = V8_ENGINE # Note: fails stress due to floating point differences
else:
JS_ENGINE = NODE_JS
if type(JS_ENGINE) == str:
JS_ENGINE = [JS_ENGINE]
print
print '==================================='
print JS_ENGINE
print '==================================='
print
def run(filename):
filename = os.path.abspath(filename)
test_utils = os.path.abspath(os.path.join('tests', 'testutils.js'))
old = os.getcwd()
try:
os.chdir('builds')
if JS_ENGINE == SPIDERMONKEY_ENGINE:
cmd = JS_ENGINE + ['-e', 'gcparam("maxBytes", 1024*1024*1024); load("' + build + '"); load("' + test_utils + '")', filename]
return Popen(cmd, stdout=PIPE).communicate()[0]
else:
return Popen(JS_ENGINE + [build, test_utils, filename], stdout=PIPE).communicate()[0]
finally:
os.chdir(old)
__counter = 0
def stage(text):
global __counter
print __counter, ':', text
__counter += 1
if len(sys.argv) != 3 or sys.argv[2] != 'benchmark':
stage('regression tests')
for test in ['basics', 'wrapping', '2', '3', 'constraint', 'compoundShape']:
name = test + '.js'
print ' ', name
fullname = os.path.join('tests', name)
output = run(fullname)
assert 'ok.' in output, output
stage('hello world')
output = run(os.path.join('examples', 'hello_world.js'))
#assert open(os.path.join('examples', 'hello_world.txt')).read() in output, output
assert 'ok.' in output, output
stage('stress')
output = run(os.path.join('tests', 'stress.js'))
#assert
'''
0 : 0.00,-56.00,0.00
1 : 13.03,-5.00,-5.24
2 : 2.43,-5.00,-3.49
3 : -6.77,-5.54,-0.77
4 : -2.55,-5.00,2.84
5 : 11.75,-5.00,11.25
6 : 2.35,-5.61,0.12
total time:''' in output#, output
assert 'ok.' in output, output
print ' stress benchmark: ' + output.split('\n')[-3]
print
print '==================================='
print
print 'ok.'