diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-01-12 12:06:13 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-01-12 12:06:13 -0800 |
commit | c7c035b043902f3b4847b1f6ee390f0fa8d70b38 (patch) | |
tree | 2c031253354d8bb9a8605f5df6672fc49c8c29ad /check.py | |
parent | 783eea2fff10a315b728c952ef78293c7957390a (diff) | |
download | binaryen-c7c035b043902f3b4847b1f6ee390f0fa8d70b38.tar.gz binaryen-c7c035b043902f3b4847b1f6ee390f0fa8d70b38.tar.bz2 binaryen-c7c035b043902f3b4847b1f6ee390f0fa8d70b38.zip |
disable torture tests for current known breakage
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -18,13 +18,15 @@ import os, shutil, sys, subprocess, difflib, json, time interpreter = None requested = [] -torture = True +torture = False # XXX fix this when they pass again for arg in sys.argv[1:]: if arg.startswith('--interpreter='): interpreter = arg.split('=')[1] print '[ using wasm interpreter at "%s" ]' % interpreter assert os.path.exists(interpreter), 'interpreter not found' + elif arg == '--torture': + torture = True elif arg == '--no-torture': torture = False else: |