diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-03-14 16:10:22 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-03-14 16:10:22 -0700 |
commit | e56b193cee003dd0015077726163fb4c2511ee68 (patch) | |
tree | fee74a56373274f3bdb5edd9db8de9edd7ceee6c /tests/test_browser.py | |
parent | cef72b48d5f288b8954c174b8b6d7be94c51988e (diff) | |
parent | a564e870359a576ad42531bb39a279db12bd5b2b (diff) |
Merge pull request #2224 from juj/osx_mouse
OSX mouse support.
Diffstat (limited to 'tests/test_browser.py')
-rw-r--r-- | tests/test_browser.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/test_browser.py b/tests/test_browser.py index d5949709..f0343669 100644 --- a/tests/test_browser.py +++ b/tests/test_browser.py @@ -1790,6 +1790,11 @@ Module["preRun"].push(function () { print opts self.btest(path_from_root('tests', 'test_html5.c'), args=opts, expected='0') + def test_html5_mouse(self): + for opts in [[], ['-O2', '-g1', '--closure', '1']]: + print opts + self.btest(path_from_root('tests', 'test_html5_mouse.c'), args=opts + ['-DAUTOMATE_SUCCESS=1'], expected='0') + def test_codemods(self): for opt_level in [0, 2]: print 'opt level', opt_level |