aboutsummaryrefslogtreecommitdiff
path: root/tests/test_interactive.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-05-09 14:33:47 -0700
committerAlon Zakai <alonzakai@gmail.com>2014-05-09 14:33:47 -0700
commit5d22fa213f7ec66426e2a838b07a38802714dcef (patch)
tree33b1bcc62d206a05579d61fc49569ecfea549666 /tests/test_interactive.py
parent5b8a74f2bc18167daf802ee11cd4631e61287a0a (diff)
remove test_sdl_audio_quickload which has been broken for a very long time
Diffstat (limited to 'tests/test_interactive.py')
-rw-r--r--tests/test_interactive.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/test_interactive.py b/tests/test_interactive.py
index aa1d96af..7c968f78 100644
--- a/tests/test_interactive.py
+++ b/tests/test_interactive.py
@@ -59,12 +59,6 @@ class interactive(BrowserCore):
Popen([PYTHON, EMCC, '-O2', '--minify', '0', os.path.join(self.get_dir(), 'sdl_audio_mix.c'), '--preload-file', 'sound.ogg', '--preload-file', 'music.ogg', '--preload-file', 'noise.ogg', '-o', 'page.html']).communicate()
self.run_browser('page.html', '', '/report_result?1')
- def test_sdl_audio_quickload(self):
- open(os.path.join(self.get_dir(), 'sdl_audio_quickload.c'), 'w').write(self.with_report_result(open(path_from_root('tests', 'sdl_audio_quickload.c')).read()))
-
- Popen([PYTHON, EMCC, '-O2', '--minify', '0', os.path.join(self.get_dir(), 'sdl_audio_quickload.c'), '-o', 'page.html', '-s', 'EXPORTED_FUNCTIONS=["_main", "_play"]']).communicate()
- self.run_browser('page.html', '', '/report_result?1')
-
def test_sdl_audio_beeps(self):
open(os.path.join(self.get_dir(), 'sdl_audio_beep.cpp'), 'w').write(self.with_report_result(open(path_from_root('tests', 'sdl_audio_beep.cpp')).read()))