summaryrefslogtreecommitdiff
path: root/scripts/test/support.py
diff options
context:
space:
mode:
authorThomas Lively <tlively@users.noreply.github.com>2017-08-02 20:20:14 -0700
committerAlon Zakai <alonzakai@gmail.com>2017-08-02 20:20:14 -0700
commitffd9a72d28d36915fb173a6d52fbb6e43f7c15db (patch)
tree0dbd0f9d99fc20ab1c1e63395e8f399fd51cf806 /scripts/test/support.py
parentde15161e110f26212095c5cf4faf2e3668d2531b (diff)
downloadbinaryen-ffd9a72d28d36915fb173a6d52fbb6e43f7c15db.tar.gz
binaryen-ffd9a72d28d36915fb173a6d52fbb6e43f7c15db.tar.bz2
binaryen-ffd9a72d28d36915fb173a6d52fbb6e43f7c15db.zip
Get wasm2asm building again (#1107)
* Get wasm2asm building again Updates CMakeLists.txt to have wasm2asm built by default, updates wasm2asm.h to account for recent interface changes, and restores JSPrinter functionality. * Implement splice for array values * Clean up wasm2asm testing * Print semicolons after statements in blocks * Cleanups and semicolons for condition arms * Prettify semicolon emission
Diffstat (limited to 'scripts/test/support.py')
-rwxr-xr-xscripts/test/support.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/test/support.py b/scripts/test/support.py
index 5d791d155..97dd3d1c4 100755
--- a/scripts/test/support.py
+++ b/scripts/test/support.py
@@ -147,7 +147,8 @@ def split_wast(wast):
return ret
-def run_command(cmd, expected_status=0, stderr=None, expected_err=None):
+def run_command(cmd, expected_status=0, stderr=None,
+ expected_err=None, err_contains=False):
if expected_err is not None:
assert stderr == subprocess.PIPE or stderr is None,\
"Can't redirect stderr if using expected_err"
@@ -157,7 +158,9 @@ def run_command(cmd, expected_status=0, stderr=None, expected_err=None):
out, err = proc.communicate()
if proc.returncode != expected_status:
raise Exception(('run_command failed', err))
- if expected_err is not None and err != expected_err:
+ err_correct = expected_err is None or \
+ (expected_err in err if err_contains else expected_err == err)
+ if not err_correct:
raise Exception(('run_command unexpected stderr',
"expected '%s', actual '%s'" % (expected_err, err)))
return out