diff options
author | Alon Zakai <azakai@google.com> | 2021-09-07 11:09:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-07 11:09:13 -0700 |
commit | bf21a66e1b6d68407c941a9534bc1cd76d329bf2 (patch) | |
tree | 1a925f8a580cc05bb65639450622088250c317dc /test | |
parent | 0ce4ebc853d89f19b22a8622304725a7bc423661 (diff) | |
download | binaryen-bf21a66e1b6d68407c941a9534bc1cd76d329bf2.tar.gz binaryen-bf21a66e1b6d68407c941a9534bc1cd76d329bf2.tar.bz2 binaryen-bf21a66e1b6d68407c941a9534bc1cd76d329bf2.zip |
wasm-split: Export the memory if it is not already (#4121)
Diffstat (limited to 'test')
-rw-r--r-- | test/lit/wasm-split/instrument-funcs.wast | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/lit/wasm-split/instrument-funcs.wast b/test/lit/wasm-split/instrument-funcs.wast index 1da68150d..cf3ca4af7 100644 --- a/test/lit/wasm-split/instrument-funcs.wast +++ b/test/lit/wasm-split/instrument-funcs.wast @@ -23,9 +23,12 @@ ;; Check that a memory has been added ;; CHECK: (memory $0 1 1) -;; And the profiling function exported +;; And the profiling function is exported ;; CHECK: (export "__write_profile" (func $__write_profile)) +;; And the memory has been exported +;; CHECK: (export "profile-memory" (memory $0)) + ;; Check that the function instrumentation is correct ;; CHECK: (func $baz (param $0 i32) (result i32) |