summaryrefslogtreecommitdiff
path: root/test/run-interp.py
diff options
context:
space:
mode:
authorBen Smith <binjimin@gmail.com>2017-02-17 16:32:20 -0800
committerGitHub <noreply@github.com>2017-02-17 16:32:20 -0800
commit28a34066f1f17b0ce7070835a695f621bdfe59ea (patch)
tree3396db9aad083b616981f2980953afd1b654be85 /test/run-interp.py
parent6463c765207e37e55af1c6a06ff06071af131c07 (diff)
downloadwabt-28a34066f1f17b0ce7070835a695f621bdfe59ea.tar.gz
wabt-28a34066f1f17b0ce7070835a695f621bdfe59ea.tar.bz2
wabt-28a34066f1f17b0ce7070835a695f621bdfe59ea.zip
Remove WabtAllocator (#307)
It complicates the code everywhere. It's faster to use a stack allocator, but not worth the trouble for maintainability.
Diffstat (limited to 'test/run-interp.py')
-rwxr-xr-xtest/run-interp.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/run-interp.py b/test/run-interp.py
index 155ddb2f..d09634b3 100755
--- a/test/run-interp.py
+++ b/test/run-interp.py
@@ -45,7 +45,6 @@ def main(args):
action='store_true')
parser.add_argument('--run-all-exports', action='store_true')
parser.add_argument('--spec', action='store_true')
- parser.add_argument('--use-libc-allocator', action='store_true')
parser.add_argument('file', help='test file.')
options = parser.parse_args(args)
@@ -55,7 +54,6 @@ def main(args):
wast2wasm.AppendOptionalArgs({
'-v': options.verbose,
'--spec': options.spec,
- '--use-libc-allocator': options.use_libc_allocator
})
wasm_interp = utils.Executable(
@@ -65,7 +63,6 @@ def main(args):
'--run-all-exports': options.run_all_exports,
'--spec': options.spec,
'--trace': options.verbose,
- '--use-libc-allocator': options.use_libc_allocator
})
wast2wasm.verbose = options.print_cmd