summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2019-04-16 16:47:50 -0700
committerGitHub <noreply@github.com>2019-04-16 16:47:50 -0700
commit4d81752204fede13d6513def4195aabe66c5586f (patch)
treef6322eaa40e0fc38beaa7ca68dc3b55b8629f473 /scripts
parent698fddca4e598cb4f72fe61557c9f91ed879a289 (diff)
downloadbinaryen-4d81752204fede13d6513def4195aabe66c5586f.tar.gz
binaryen-4d81752204fede13d6513def4195aabe66c5586f.tar.bz2
binaryen-4d81752204fede13d6513def4195aabe66c5586f.zip
Change default feature set to MVP (#1993)
In the absence of the target features section or command line flags. When there are command line flags, it is an error if they do not exactly match the target features section, except if --detect-features has been provided. Also adds a --print-features pass to print the command line flags for all enabled options and uses it to make the feature tests more rigorous.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/test/shared.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py
index 227b7b65e..8309d9b5c 100644
--- a/scripts/test/shared.py
+++ b/scripts/test/shared.py
@@ -399,7 +399,7 @@ def binary_format_check(wast, verify_final_result=True, wasm_as_args=['-g'],
assert os.path.exists('ab.wast')
# make sure it is a valid wast
- cmd = WASM_OPT + ['ab.wast']
+ cmd = WASM_OPT + ['ab.wast', '-all']
print ' ', ' '.join(cmd)
subprocess.check_call(cmd, stdout=subprocess.PIPE)
@@ -414,12 +414,12 @@ def minify_check(wast, verify_final_result=True):
# checks we can parse minified output
print ' (minify check)'
- cmd = WASM_OPT + [wast, '--print-minified']
+ cmd = WASM_OPT + [wast, '--print-minified', '-all']
print ' ', ' '.join(cmd)
subprocess.check_call(cmd, stdout=open('a.wast', 'w'), stderr=subprocess.PIPE)
assert os.path.exists('a.wast')
subprocess.check_call(
- WASM_OPT + ['a.wast', '--print-minified'],
+ WASM_OPT + ['a.wast', '--print-minified', '-all'],
stdout=open('b.wast', 'w'), stderr=subprocess.PIPE)
assert os.path.exists('b.wast')
if verify_final_result: