diff options
author | Ehsan Akhgari <ehsan.akhgari@gmail.com> | 2012-02-08 18:20:06 -0500 |
---|---|---|
committer | Ehsan Akhgari <ehsan.akhgari@gmail.com> | 2012-02-08 18:52:18 -0500 |
commit | 97f8717e5aebf7056343751e5810fa76edbc0dd0 (patch) | |
tree | bf745ba0a6b0965378a443e37c9619f4dd2264a2 | |
parent | d08ee4aa0bf4bd22d234819656489de020766b21 (diff) |
Fix test_the_bullet
We need to be careful about the order of libraries which we pass in
-rwxr-xr-x | tests/runner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index 960a5d21..dd366cdc 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -4358,8 +4358,8 @@ def process(filename): self.do_run(open(path_from_root('tests', 'bullet', 'Demos', 'HelloWorld', 'HelloWorld.cpp'), 'r').read(), [open(path_from_root('tests', 'bullet', 'output.txt'), 'r').read(), # different roundings open(path_from_root('tests', 'bullet', 'output2.txt'), 'r').read()], - libraries=self.get_library('bullet', [os.path.join('src', '.libs', 'libBulletCollision.a'), - os.path.join('src', '.libs', 'libBulletDynamics.a'), + libraries=self.get_library('bullet', [os.path.join('src', '.libs', 'libBulletDynamics.a'), + os.path.join('src', '.libs', 'libBulletCollision.a'), os.path.join('src', '.libs', 'libLinearMath.a')], configure_args=['--disable-demos','--disable-dependency-tracking']), includes=[path_from_root('tests', 'bullet', 'src')], |