aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-12-15 15:11:47 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-12-15 15:11:47 -0800
commit67f817f32f5e6c52b4589253e941536fa72e2cf2 (patch)
treeaabe504cca7c3f5bc138b26e37ff0e565d9cccb1
parente54121ad453a85584d3eb3659fe05b4b3933d905 (diff)
disable a 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 516bfc64..7f5dec38 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -4057,6 +4057,8 @@ def process(filename):
def test_utf32(self):
if self.emcc_args is None: return self.skip('need libc for wcslen()')
if not self.is_le32(): return self.skip('this test uses inline js, which requires le32')
+ if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp')
+
self.do_run(open(path_from_root('tests', 'utf32.cpp')).read(), 'OK.')
self.do_run(open(path_from_root('tests', 'utf32.cpp')).read(), 'OK.', args=['-fshort-wchar'])