diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-15 11:28:50 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-15 11:28:50 -0800 |
commit | b6d2f109d2910cf7ea250f9ea557b2b8842f4c2b (patch) | |
tree | ce45fbada9e5b3498cedb11a2fe190af3e61b0e0 | |
parent | f6fd13590913b74fe4f728472c96c5cfdb9f84b0 (diff) |
fix asm2g.test_the_bullet
-rw-r--r-- | tests/test_core.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index c305732d..481130c5 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -9002,6 +9002,7 @@ def process(filename): 'btVoronoiSimplexSolver.h:42', 'btVoronoiSimplexSolver.h:43'] for use_cmake in [False, True]: # If false, use a configure script to configure Bullet build. + print 'cmake', use_cmake # Windows cannot run configure sh scripts. if WINDOWS and not use_cmake: continue @@ -9016,7 +9017,7 @@ def process(filename): test() assert 'asm2g' in test_modes - if self.run_name == 'asm2g' and configure[0] == 'sh': + if self.run_name == 'asm2g' and not use_cmake: # Test forced alignment print >> sys.stderr, 'testing FORCE_ALIGNED_MEMORY' old = open('src.cpp.o.js').read() |