diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-05-30 16:44:26 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-05-30 16:44:26 -0700 |
commit | b59237ccfdc5a25d5f9ae50c0edb40b67b30b2c2 (patch) | |
tree | a3718b732a5fff8494c953f1b9f51dfb6b93e1fa /tests/runner.py | |
parent | 8e710656602558042f2190fbb0691da236234bb7 (diff) |
do not use gl emulation code in es2 emulation mode, to avoid confusing lack of a bound buffer between them
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/runner.py b/tests/runner.py index 6e259f45..b783a2d8 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -12436,6 +12436,9 @@ elif 'browser' in str(sys.argv): self.run_browser('something.html', 'You should see animating gears.', '/report_gl_result?true') assert ('var GLEmulation' in open(self.in_dir('something.html')).read()) == emulation, "emulation code should be added when asked for" + def test_fulles2_sdlproc(self): + self.btest('full_es2_sdlproc.c', '1', args=['-s', 'GL_TESTING=1', '-DHAVE_BUILTIN_SINCOS', '-s', 'FULL_ES2=1']) + def test_glgears_deriv(self): self.reftest(path_from_root('tests', 'gears.png')) Popen([PYTHON, EMCC, path_from_root('tests', 'hello_world_gles_deriv.c'), '-o', 'something.html', '-s', 'GL_TESTING=1', |