diff options
author | Sam Clegg <sbc@chromium.org> | 2020-09-30 17:21:51 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-30 17:21:51 -0700 |
commit | 2a935b64dde22671644c4712d0f45e8df60f94eb (patch) | |
tree | 56612d0ed4c9036293b4dba7137eb29ba5428290 /scripts/test | |
parent | 2f6939a2cecc37691a1e474ff15a7801f9509cfb (diff) | |
download | binaryen-2a935b64dde22671644c4712d0f45e8df60f94eb.tar.gz binaryen-2a935b64dde22671644c4712d0f45e8df60f94eb.tar.bz2 binaryen-2a935b64dde22671644c4712d0f45e8df60f94eb.zip |
wasm2js: override incoming memory's grow method (#3185)
This will allow for the completely removal of
`__growWasmMemory` as a followup. We currently
unconditionally generate this function
in `generateMemoryGrowthFunction`.
See #3180
Diffstat (limited to 'scripts/test')
-rw-r--r-- | scripts/test/wasm2js.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/test/wasm2js.py b/scripts/test/wasm2js.py index 38a2defd7..11f7011a1 100644 --- a/scripts/test/wasm2js.py +++ b/scripts/test/wasm2js.py @@ -30,6 +30,9 @@ wasm2js_blacklist = ['empty_imported_table.wast'] def check_for_stale_files(): + if shared.options.test_name_filter: + return + # TODO(sbc): Generalize and apply other test suites all_tests = [] for t in tests + spec_tests + wasm2js_tests: |