diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-04-10 16:12:18 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-04-10 16:12:18 -0700 |
commit | f57081e7f1f4e8ab3b4be047a2a1f7217bb4dce3 (patch) | |
tree | ea5a3cf4192a494c52b553bee6a5c9df1484b91d /tests/runner.py | |
parent | 82fd5dba17bf753301c304e03ad75fab0c49d29a (diff) |
finish box2d benchmark
Diffstat (limited to 'tests/runner.py')
-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 eb6fb110..2865679b 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -12376,7 +12376,7 @@ ok. ''', force_c=True, emcc_args=emcc_args, native_args=native_args) - def zzztest_yyy_box2d(self): # Called thus so it runs late in the alphabetical cycle... it is long + def test_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.a')], configure=None) @@ -12385,7 +12385,7 @@ ok. emcc_args = js_lib + ['-I' + path_from_root('tests', 'box2d')] native_args = native_lib + ['-I' + path_from_root('tests', 'box2d')] - self.do_benchmark('box2d', src, [], '\nok.\n', emcc_args=emcc_args, native_args=native_args) + self.do_benchmark('box2d', src, [], 'frame averages', emcc_args=emcc_args, native_args=native_args) def test_zzz_bullet(self): # Called thus so it runs late in the alphabetical cycle... it is long src = open(path_from_root('tests', 'bullet', 'Demos', 'Benchmarks', 'BenchmarkDemo.cpp'), 'r').read() + \ |