diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-08 11:08:04 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-08 11:08:04 -0800 |
commit | c23a8a7d29effb37a00c3eb161c22d2027566187 (patch) | |
tree | 4b70365eca931f40eef037aa4a6ee7d4d38888bd /tests | |
parent | 1821ecec0b64b539d8bc52624687d97abb834c0d (diff) |
enable simd tests in fastcomp
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_core.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index ed01c538..2157eeb0 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -4604,7 +4604,6 @@ return malloc(size); def test_simd(self): if Settings.USE_TYPED_ARRAYS != 2: return self.skip('needs ta2') if Settings.ASM_JS: Settings.ASM_JS = 2 # does not validate - if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp') test_path = path_from_root('tests', 'core', 'test_simd') src, output = (test_path + s for s in ('.in', '.out')) @@ -4613,7 +4612,6 @@ return malloc(size); def test_simd2(self): if Settings.ASM_JS: Settings.ASM_JS = 2 # does not validate - if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp') test_path = path_from_root('tests', 'core', 'test_simd2') src, output = (test_path + s for s in ('.in', '.out')) @@ -4623,7 +4621,6 @@ return malloc(size); def test_simd3(self): if Settings.USE_TYPED_ARRAYS != 2: return self.skip('needs ta2') if Settings.ASM_JS: Settings.ASM_JS = 2 # does not validate - if os.environ.get('EMCC_FAST_COMPILER') == '1': return self.skip('todo in fastcomp') test_path = path_from_root('tests', 'core', 'test_simd3') src, output = (test_path + s for s in ('.in', '.out')) |