diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-03-01 14:32:01 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-03-01 14:32:27 -0800 |
commit | f117a4d2c5d65c696638fc15fb4aa59cc52e66cf (patch) | |
tree | 957473ec87cfdd2b0f78bde65efb2b59bfda7cbd /tests | |
parent | df1f1c1455fe84b081e3d8a8e556e48363b372fa (diff) |
fix other.test_dangerous_func_cast
Diffstat (limited to 'tests')
-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 5959e56d..b86af5cc 100644 --- a/tests/test_other.py +++ b/tests/test_other.py @@ -540,6 +540,7 @@ f.close() ''' open('src.c', 'w').write(src) def test(args, expected, err_expected=None): + print args, expected, err_expected out, err = Popen([PYTHON, EMCC, 'src.c'] + args, stderr=PIPE).communicate() if err_expected: self.assertContained(err_expected, err) self.assertContained(expected, run_js(self.in_dir('a.out.js'), stderr=PIPE, full_output=True)) |