summaryrefslogtreecommitdiff
path: root/scripts/test/shared.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/test/shared.py')
-rw-r--r--scripts/test/shared.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py
index 14860a74c..8624448d9 100644
--- a/scripts/test/shared.py
+++ b/scripts/test/shared.py
@@ -435,3 +435,17 @@ def minify_check(wast, verify_final_result=True):
def files_with_pattern(*path_pattern):
return sorted(glob.glob(os.path.join(*path_pattern)))
+
+
+# run a check with BINARYEN_PASS_DEBUG set, to do full validation
+def with_pass_debug(check):
+ old_pass_debug = os.environ.get('BINARYEN_PASS_DEBUG')
+ try:
+ os.environ['BINARYEN_PASS_DEBUG'] = '1'
+ check()
+ finally:
+ if old_pass_debug is not None:
+ os.environ['BINARYEN_PASS_DEBUG'] = old_pass_debug
+ else:
+ if 'BINARYEN_PASS_DEBUG' in os.environ:
+ del os.environ['BINARYEN_PASS_DEBUG']