aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-01-03 15:51:22 -0800
committerAlon Zakai <alonzakai@gmail.com>2014-01-03 15:51:22 -0800
commitc9b22f467094404a062112c9b93199f59e6e93c7 (patch)
tree92eb225409fd17a00af377610d0b66c4e3f1cf72
parentc7ccd83f14bde44767c296da7bd626c12f67c8f7 (diff)
disable named globals test in fastcomp
-rw-r--r--tests/test_core.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_core.py b/tests/test_core.py
index a1b8279a..6442f894 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -937,6 +937,8 @@ class T(RunnerCore): # Short name, to make it more fun to use manually on the co
for named in (0, 1):
print named
+ if os.environ.get('EMCC_FAST_COMPILER') == '1' and named: continue # no named globals in fastcomp
+
Settings.NAMED_GLOBALS = named
self.do_run_from_file(src, output, ['wowie', 'too', '74'])