summaryrefslogtreecommitdiff
path: root/check.py
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2021-04-22 15:22:14 -0700
committerGitHub <noreply@github.com>2021-04-22 15:22:14 -0700
commitb0dd7fe1b82fa7e3696e06cac1daafd5eb54c221 (patch)
treeee0539cee81d76b41fae765aa760fdca9f3828f8 /check.py
parentfa28a70db380c893b2c2bd236a422dc9ae1a383c (diff)
downloadbinaryen-b0dd7fe1b82fa7e3696e06cac1daafd5eb54c221.tar.gz
binaryen-b0dd7fe1b82fa7e3696e06cac1daafd5eb54c221.tar.bz2
binaryen-b0dd7fe1b82fa7e3696e06cac1daafd5eb54c221.zip
Run lit tests with pass-debug as well, to check for more errors (#3836)
Diffstat (limited to 'check.py')
-rwxr-xr-xcheck.py21
1 files changed, 12 insertions, 9 deletions
diff --git a/check.py b/check.py
index f1994a791..680ce63a1 100755
--- a/check.py
+++ b/check.py
@@ -331,15 +331,18 @@ def run_unittest():
def run_lit():
- lit_script = os.path.join(shared.options.binaryen_bin, 'binaryen-lit')
- lit_tests = os.path.join(shared.options.binaryen_root, 'test', 'lit')
- # lit expects to be run as its own executable
- cmd = [sys.executable, lit_script, lit_tests, '-vv']
- result = subprocess.run(cmd)
- if result.returncode != 0:
- shared.num_failures += 1
- if shared.options.abort_on_first_failure and shared.num_failures:
- raise Exception("lit test failed")
+ def run():
+ lit_script = os.path.join(shared.options.binaryen_bin, 'binaryen-lit')
+ lit_tests = os.path.join(shared.options.binaryen_root, 'test', 'lit')
+ # lit expects to be run as its own executable
+ cmd = [sys.executable, lit_script, lit_tests, '-vv']
+ result = subprocess.run(cmd)
+ if result.returncode != 0:
+ shared.num_failures += 1
+ if shared.options.abort_on_first_failure and shared.num_failures:
+ raise Exception("lit test failed")
+
+ shared.with_pass_debug(run)
TEST_SUITES = OrderedDict([