diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-07-16 10:32:34 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-16 10:32:40 -0700 |
commit | 7f426c2ca6a9fadd40e8d3c944903880a22634a5 (patch) | |
tree | d7f112092b1a3abc028231d62677c255777f6f9c | |
parent | ceac58b4cb40ab118d6c984c7cd63780e57fbb43 (diff) |
fix test_freealut
-rwxr-xr-x | tests/runner.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 339ce68c..dd027a11 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -12810,8 +12810,9 @@ Press any key to continue.''' self.run_browser('page.html', 'Should print "(300, 150)" -- the size of the canvas in pixels', '/report_result?1') def test_freealut(self): - programs = self.get_library('freealut', os.path.join('examples', 'hello_world.bc'), make_args=['EXEEXT=.bc']) + programs = self.get_library('freealut', os.path.join('examples', '.libs', 'hello_world.bc'), make_args=['EXEEXT=.bc']) for program in programs: + assert os.path.exists(program) Popen([PYTHON, EMCC, '-O2', program, '-o', 'page.html']).communicate() self.run_browser('page.html', 'You should hear "Hello World!"') |