We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6fd135 commit b6d2f10Copy full SHA for b6d2f10
tests/test_core.py
@@ -9002,6 +9002,7 @@ def test_the_bullet(self): # Called thus so it runs late in the alphabetical cyc
9002
'btVoronoiSimplexSolver.h:42', 'btVoronoiSimplexSolver.h:43']
9003
9004
for use_cmake in [False, True]: # If false, use a configure script to configure Bullet build.
9005
+ print 'cmake', use_cmake
9006
# Windows cannot run configure sh scripts.
9007
if WINDOWS and not use_cmake:
9008
continue
@@ -9016,7 +9017,7 @@ def test():
9016
9017
test()
9018
9019
assert 'asm2g' in test_modes
- if self.run_name == 'asm2g' and configure[0] == 'sh':
9020
+ if self.run_name == 'asm2g' and not use_cmake:
9021
# Test forced alignment
9022
print >> sys.stderr, 'testing FORCE_ALIGNED_MEMORY'
9023
old = open('src.cpp.o.js').read()
0 commit comments