aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runner.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 0c677b58..451ecdaf 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -7696,10 +7696,11 @@ f.close()
assert 'If you see this - the world is all right!' in output
def test_embind(self):
- # TODO: test -O1 and -O2
for args, fail in [
([], True), # without --bind, we fail
- (['--bind'], False)
+ (['--bind'], False),
+ (['--bind', '-O1'], False)
+ # XXX TODO (['--bind', '-O2'], False)
]:
print args, fail
try_delete(self.in_dir('a.out.js'))