aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-04-10 16:02:03 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-04-10 16:02:03 -0700
commit82fd5dba17bf753301c304e03ad75fab0c49d29a (patch)
treedd109b0ceb9b726d393f6aa91af200db159b71b6 /tests/runner.py
parentf84537c333524d0841923eaec66604584bf77326 (diff)
box2d benchmark fixes
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-xtests/runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 74e78f61..eb6fb110 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -12379,8 +12379,8 @@ ok.
def zzztest_yyy_box2d(self): # Called thus so it runs late in the alphabetical cycle... it is long
src = open(path_from_root('tests', 'box2d', 'Benchmark.cpp'), 'r').read()
- js_lib = self.get_library('box2d', [os.path.join('box2d.o')], configure=None)
- js_lib = self.get_library('box2d_native', [os.path.join('box2d.o')], configure=None, native=True)
+ js_lib = self.get_library('box2d', [os.path.join('box2d.a')], configure=None)
+ native_lib = self.get_library('box2d_native', [os.path.join('box2d.a')], configure=None, native=True)
emcc_args = js_lib + ['-I' + path_from_root('tests', 'box2d')]
native_args = native_lib + ['-I' + path_from_root('tests', 'box2d')]