diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-03-11 13:31:09 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-03-11 13:31:09 -0700 |
commit | c3d3f580c10ca69dcc17c6445b1f4111843ae531 (patch) | |
tree | fbaffbd650f9f517a1b1f07e709f648c0af5774d /tests/runner.py | |
parent | ca3b3ffe295968eb3b37d35bff48243fec301871 (diff) |
add testcase for issue 944
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py index d46ca369..8e767e16 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -11000,11 +11000,12 @@ elif 'browser' in str(sys.argv): self.run_browser('something.html', 'You should see animating gears.', '/report_result?0') def test_glgears_animation(self): - for full_es2 in [0, 1]: + es2_suffix = ['', '_full', '_full_944'] + for full_es2 in [0, 1, 2]: for emulation in [0, 1]: if full_es2 and emulation: continue print full_es2, emulation - Popen([PYTHON, EMCC, path_from_root('tests', 'hello_world_gles%s.c' % ('' if not full_es2 else '_full')), '-o', 'something.html', + Popen([PYTHON, EMCC, path_from_root('tests', 'hello_world_gles%s.c' % es2_suffix[full_es2]), '-o', 'something.html', '-DHAVE_BUILTIN_SINCOS', '-s', 'GL_TESTING=1', '--shell-file', path_from_root('tests', 'hello_world_gles_shell.html')] + (['-s', 'FORCE_GL_EMULATION=1'] if emulation else []) + |