diff options
author | Dan Gohman <sunfish@mozilla.com> | 2014-02-28 16:18:47 -0800 |
---|---|---|
committer | Dan Gohman <sunfish@mozilla.com> | 2014-03-03 13:43:41 -0800 |
commit | 76ad462b1882706edc7ed300f6d0cf6cb61b80c5 (patch) | |
tree | e3a9da218b65ad8a73d8379ca2d703f00885cbd0 /tests/test_core.py | |
parent | 226dd0d169bb1cf4253cb4ffcaadc1137e53b3dc (diff) |
Tidy up and fix several tests in tests/cases.
Diffstat (limited to 'tests/test_core.py')
-rw-r--r-- | tests/test_core.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_core.py b/tests/test_core.py index ddb61b2b..6ea0614a 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -5199,11 +5199,11 @@ def process(filename): shortname = name.replace('.ll', '') if '' not in shortname: continue if os.environ.get('EMCC_FAST_COMPILER') != '0' and os.path.basename(shortname) in [ - 'structparam', 'extendedprecision', 'issue_39', 'emptystruct', 'phinonexist', 'quotedlabel', 'oob_ta2', 'phientryimplicit', 'phiself', 'invokebitcast', 'funcptr', # invalid ir + 'structparam', 'extendedprecision', 'issue_39', 'phinonexist', 'oob_ta2', 'phiself', 'invokebitcast', # invalid ir 'structphiparam', 'callwithstructural_ta2', 'callwithstructural64_ta2', 'structinparam', # pnacl limitations in ExpandStructRegs '2xi40', # pnacl limitations in ExpandGetElementPtr 'quoted', # current fastcomp limitations FIXME - 'sillyfuncast2', 'sillybitcast', 'atomicrmw_unaligned' # TODO XXX + 'atomicrmw_unaligned' # TODO XXX ]: continue if '_ta2' in shortname and not Settings.USE_TYPED_ARRAYS == 2: print self.skip('case "%s" only relevant for ta2' % shortname) |