diff options
author | Anthony Pesch <inolen@gmail.com> | 2013-06-17 18:48:20 -0700 |
---|---|---|
committer | Anthony Pesch <inolen@gmail.com> | 2013-07-30 17:45:32 -0700 |
commit | 4088826095f06ae47a00544434d3db6a9fdf323e (patch) | |
tree | 8cb60e3e12938e43c8fd39436d4f43d8bbe9b770 /tests/runner.py | |
parent | 9e0d03bde9e08842366e0fd17f1167cf2b4ecca2 (diff) |
- fixed AudioBufferSourceNode start call, pass it an asbsolute time, not relative
- call updateSource when calling alGetSourcei
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 1781980a..2627d113 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -13252,7 +13252,7 @@ Press any key to continue.''' shutil.copyfile(path_from_root('tests', 'sounds', 'the_entertainer.wav'), os.path.join(self.get_dir(), 'the_entertainer.wav')) open(os.path.join(self.get_dir(), 'openal_buffers.c'), 'w').write(self.with_report_result(open(path_from_root('tests', 'openal_buffers.c')).read())) - Popen([PYTHON, EMCC, '-O2', os.path.join(self.get_dir(), 'openal_buffers.c'), '--preload-file', 'the_entertainer.wav', '-o', 'page.html']).communicate() + Popen([PYTHON, EMCC, '-O0', os.path.join(self.get_dir(), 'openal_buffers.c'), '--preload-file', 'the_entertainer.wav', '-o', 'page.html']).communicate() self.run_browser('page.html', '', '/report_result?0') def test_glfw(self): |