diff options
Diffstat (limited to 'tests/test_other.py')
-rw-r--r-- | tests/test_other.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_other.py b/tests/test_other.py index 81e8f05c..d12374dd 100644 --- a/tests/test_other.py +++ b/tests/test_other.py @@ -2442,6 +2442,7 @@ int main(int argc, char **argv) { print args, expect output, err = Popen([PYTHON, EMCC, path_from_root('tests', 'hello_world.cpp')] + args, stdout=PIPE, stderr=PIPE).communicate() self.assertContained(expect, err) + self.assertContained('hello, world!', run_js('a.out.js')) finally: del os.environ['EMCC_DEBUG'] |