aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-02-10 10:11:38 -0800
committerAlon Zakai <alonzakai@gmail.com>2014-02-10 10:11:38 -0800
commit9bd809a49cc4a04f6296900d9deaa1e26db586e1 (patch)
tree66eea609e6702a1085ec2efa7b3539c75e5d4fbf
parent079f019c359eafb416b90da21412cabccf8672d0 (diff)
make ALL work properly on fastcomp
-rwxr-xr-xtests/runner.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index fffd039c..69ce8107 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -36,7 +36,10 @@ except:
# Core test runner class, shared between normal tests and benchmarks
checked_sanity = False
-test_modes = ['default', 'o1', 'o2', 'asm1', 'asm2', 'asm3', 'asm2f', 'asm2g', 'asm2x86', 's_0_0', 's_0_1']
+if os.environ.get('EMCC_FAST_COMPILER') == '1':
+ 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_index = 0
class RunnerCore(unittest.TestCase):