aboutsummaryrefslogtreecommitdiff
path: root/tests/test_core.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-12-13 18:18:50 -0800
committerAlon Zakai <alonzakai@gmail.com>2013-12-13 18:18:50 -0800
commitfbfa2996ed73427b28453c437bee09df60847961 (patch)
treefd44e7edec655c7a7ff7bd16ef7373aea2438fd9 /tests/test_core.py
parent4edb942c56a188e38c927deafd974bace0b54a5d (diff)
more fixes for test_cases for fastcomp
Diffstat (limited to 'tests/test_core.py')
-rw-r--r--tests/test_core.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test_core.py b/tests/test_core.py
index 2e0a0c73..7ada3f53 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -4970,9 +4970,10 @@ def process(filename):
shortname = name.replace('.ll', '')
if '' not in shortname: continue
if os.environ.get('EMCC_FAST_COMPILER') == '1' and os.path.basename(shortname) in [
- 'structparam', 'uadd_overflow_ta2', 'extendedprecision', 'issue_39', 'emptystruct', # invalid ir
+ 'structparam', 'uadd_overflow_ta2', 'extendedprecision', 'issue_39', 'emptystruct', 'phinonexist', 'quotedlabel', 'oob_ta2', # invalid ir
'structphiparam', # pnacl limitation in ExpandStructRegs
- 'longjmp_tiny', 'longjmp_tiny_phi', # current fastcomp limitations
+ 'legalizer_ta2', '514_ta2', # pnacl limitation in not legalizing i104, i96, etc.
+ 'longjmp_tiny', 'longjmp_tiny_phi', 'indirectbrphi', 'ptrtoint_blockaddr', # current fastcomp limitations FIXME
]: continue
if '_ta2' in shortname and not Settings.USE_TYPED_ARRAYS == 2:
print self.skip('case "%s" only relevant for ta2' % shortname)