diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-03-17 18:30:09 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-03-17 18:30:09 -0700 |
commit | bca3596472fed52ec4815bac4c8dd4f0fc659182 (patch) | |
tree | 54a45252ed4c08c19ddb413066700e7ad2872bd7 /tests/runner.py | |
parent | 163e9c1cf4df7780318e9121358661839b740c7a (diff) |
fix bug with compressed images
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 3b0bde6b..b14151a4 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -6342,7 +6342,7 @@ f.close() Popen([EMCC, os.path.join(self.get_dir(), 'sdl_image.c'), '--preload-file', 'screenshot.jpg', '-o', 'page.html']).communicate() self.run_browser('page.html', 'You should see |load me right before|.', '/report_result?600') - def zzztest_emcc_sdl_image_compressed(self): + def test_emcc_sdl_image_compressed(self): # load an image file, get pixel data shutil.copyfile(path_from_root('tests', 'screenshot.jpg'), os.path.join(self.get_dir(), 'screenshot.jpg')) open(os.path.join(self.get_dir(), 'sdl_image.c'), 'w').write(self.with_report_result(open(path_from_root('tests', 'sdl_image.c')).read())) |