aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
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')]