diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-04-14 14:09:54 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-04-14 14:09:54 -0700 |
commit | d990bbdd04fab88828ea95d09ce68c92ae2543bc (patch) | |
tree | 105a42288641c9db37d1d7238c84443152f45ed4 /tests/test_interactive.py | |
parent | 512b7bd6689699a16a5afb6d38c786d17ec45c91 (diff) | |
parent | 2faa69a865c3d6046d7d5202f2dc747dea3229f1 (diff) |
Merge pull request #2285 from juj/sdl2-touch-api-additions
Sdl2 touch api additions
Diffstat (limited to 'tests/test_interactive.py')
-rw-r--r-- | tests/test_interactive.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_interactive.py b/tests/test_interactive.py index 4ac52f55..aa1d96af 100644 --- a/tests/test_interactive.py +++ b/tests/test_interactive.py @@ -25,6 +25,9 @@ class interactive(BrowserCore): def test_html5_mouse(self): self.btest(path_from_root('tests', 'test_html5_mouse.c'), expected='0') + def test_sdl_touch(self): + self.btest(path_from_root('tests', 'sdl_touch.c'), args=['-O2', '-g1', '--closure', '1'], expected='0') + def test_sdl_wm_togglefullscreen(self): self.btest('sdl_wm_togglefullscreen.c', expected='1', args=['-s', 'NO_EXIT_RUNTIME=1']) |