summaryrefslogtreecommitdiff
path: root/scripts/test
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2018-07-10 11:05:14 -0700
committerGitHub <noreply@github.com>2018-07-10 11:05:14 -0700
commit5ccfbacb8914bd220d67c95f9e9310c872eb987f (patch)
tree6f6cd08a86c0aae85bd1838b1f465822063b2598 /scripts/test
parent14ea9995281718b9694db4ed5441d44d1171e86f (diff)
downloadbinaryen-5ccfbacb8914bd220d67c95f9e9310c872eb987f.tar.gz
binaryen-5ccfbacb8914bd220d67c95f9e9310c872eb987f.tar.bz2
binaryen-5ccfbacb8914bd220d67c95f9e9310c872eb987f.zip
Proper error handling in add* and get* methods (#1570)
See #1479 (comment) Also a one-line readme update, remove an obsolete compiler (mir2wasm) and add a new one (asterius). Also improve warning and error reporting in binaryen.js - show a stack trace when relevant (instead of node.js process.exit), and avoid atexit warning spam in debug builds.
Diffstat (limited to 'scripts/test')
-rw-r--r--scripts/test/support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test/support.py b/scripts/test/support.py
index f23e1c4de..d04a85c59 100644
--- a/scripts/test/support.py
+++ b/scripts/test/support.py
@@ -156,7 +156,7 @@ def run_command(cmd, expected_status=0, stderr=None,
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=stderr, universal_newlines=True)
out, err = proc.communicate()
code = proc.returncode
- if code != expected_status:
+ if expected_status is not None and code != expected_status:
raise Exception(('run_command failed (%s)' % code, out + str(err or '')))
err_correct = expected_err is None or \
(expected_err in err if err_contains else expected_err == err)