diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-15 14:24:20 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-15 14:24:20 -0800 |
commit | e54121ad453a85584d3eb3659fe05b4b3933d905 (patch) | |
tree | addadf66605ed59a25d91d8d4f9dc4f5bc8772a1 /tests/test_core.py | |
parent | 361070533da13ab13d927fa5f7d3773fd946cb4d (diff) |
final test_cases fixes for fastcomp
Diffstat (limited to 'tests/test_core.py')
-rw-r--r-- | tests/test_core.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index 4e1d2ce0..516bfc64 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -5014,10 +5014,11 @@ 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', 'phinonexist', 'quotedlabel', 'oob_ta2', # invalid ir - 'structphiparam', 'callwithstructural_ta2', 'callwithstructural64_ta2', # pnacl limitations in ExpandStructRegs + 'structparam', 'uadd_overflow_ta2', 'extendedprecision', 'issue_39', 'emptystruct', 'phinonexist', 'quotedlabel', 'oob_ta2', 'phientryimplicit', 'phiself', 'invokebitcast', # invalid ir + 'structphiparam', 'callwithstructural_ta2', 'callwithstructural64_ta2', 'structinparam', # pnacl limitations in ExpandStructRegs + '2xi40', # pnacl limitations in ExpandGetElementPtr 'legalizer_ta2', '514_ta2', # pnacl limitation in not legalizing i104, i96, etc. - 'longjmp_tiny', 'longjmp_tiny_invoke', 'longjmp_tiny_phi', 'indirectbrphi', 'ptrtoint_blockaddr', 'quoted', # current fastcomp limitations FIXME + 'longjmp_tiny', 'longjmp_tiny_invoke', 'longjmp_tiny_phi', 'longjmp_tiny_phi2', 'indirectbrphi', 'ptrtoint_blockaddr', 'quoted', # current fastcomp limitations FIXME 'sillyfuncast', 'sillyfuncast2', 'sillybitcast', # TODO very very soon XXX ]: continue if '_ta2' in shortname and not Settings.USE_TYPED_ARRAYS == 2: |