aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-02-21 10:52:02 -0800
committerAlon Zakai <alonzakai@gmail.com>2014-02-21 10:52:02 -0800
commit4d715bca8971203dd5a68b15129ef1feaaff5356 (patch)
treea266d04466b778ef5d972cf6ef7b8d1ed47ebcaa /tests/runner.py
parent025dea98e497bc2c3e9167850c4ecae9a65785cf (diff)
adjust main test modes for fastcomp: remove asm2x86 except for one test, and add two modes for legacy non-fastcomp -O2 with and without asm
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-xtests/runner.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/runner.py b/tests/runner.py
index 989d4ae6..7b99ae18 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -36,10 +36,7 @@ except:
# Core test runner class, shared between normal tests and benchmarks
checked_sanity = False
-if os.environ.get('EMCC_FAST_COMPILER') != '0':
- test_modes = ['default', 'asm1', 'asm2', 'asm3', 'asm2f', 'asm2g']
-else:
- test_modes = ['default', 'o1', 'o2', 'asm1', 'asm2', 'asm3', 'asm2f', 'asm2g', 'asm2x86', 's_0_0', 's_0_1']
+test_modes = ['default', 'asm1', 'asm2', 'asm3', 'asm2f', 'asm2g', 'slow2', 'slow2asm', 's_0_0', 's_0_1']
test_index = 0
class RunnerCore(unittest.TestCase):