diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-06-12 17:33:27 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-06-12 17:33:27 -0700 |
commit | 0d5ff87c339d119eefcf515a3ff7ea4b0649cef9 (patch) | |
tree | 564f924baa99244b108f721a56a0cbcbdea58b2d /tests/test_browser.py | |
parent | e141881ad1b43a1cf5ab9a570b52f11ce5befc62 (diff) |
test for long-running proxied gl
Diffstat (limited to 'tests/test_browser.py')
-rw-r--r-- | tests/test_browser.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_browser.py b/tests/test_browser.py index 94f048cf..91d13068 100644 --- a/tests/test_browser.py +++ b/tests/test_browser.py @@ -1307,7 +1307,9 @@ keydown(100);keyup(100); // trigger the end message='You should see animating gears.') def test_glgears_long(self): - self.btest('hello_world_gles.c', expected=map(str, range(30, 1000)), args=['-DHAVE_BUILTIN_SINCOS', '-DLONGTEST']) + for proxy in [0, 1]: + print 'proxy', proxy + self.btest('hello_world_gles.c', expected=map(str, range(30, 10000)), args=['-DHAVE_BUILTIN_SINCOS', '-DLONGTEST'] + (['--proxy-to-worker'] if proxy else [])) def test_glgears_animation(self): es2_suffix = ['', '_full', '_full_944'] |