diff options
author | Alon Zakai <azakai@google.com> | 2021-04-22 15:22:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-22 15:22:14 -0700 |
commit | b0dd7fe1b82fa7e3696e06cac1daafd5eb54c221 (patch) | |
tree | ee0539cee81d76b41fae765aa760fdca9f3828f8 /check.py | |
parent | fa28a70db380c893b2c2bd236a422dc9ae1a383c (diff) | |
download | binaryen-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-x | check.py | 21 |
1 files changed, 12 insertions, 9 deletions
@@ -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([ |