Skip to content

Commit 3827786

Browse files
authored
wavm: update to nightly/2022-05-14. (#295)
Signed-off-by: Piotr Sikora <[email protected]>
1 parent 9387a5b commit 3827786

File tree

3 files changed

+3
-25
lines changed

3 files changed

+3
-25
lines changed

bazel/external/wavm.patch

Lines changed: 0 additions & 14 deletions
This file was deleted.

bazel/repositories.bzl

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -233,11 +233,9 @@ def proxy_wasm_cpp_host_repositories():
233233
http_archive,
234234
name = "com_github_wavm_wavm",
235235
build_file = "@proxy_wasm_cpp_host//bazel/external:wavm.BUILD",
236-
sha256 = "bf2b2aec8a4c6a5413081c0527cb40dd16cb67e9c74a91f8a82fe1cf27a3c5d5",
237-
strip_prefix = "WAVM-c8997ebf154f3b42e688e670a7d0fa045b7a32a0",
238-
url = "https://github.com/WAVM/WAVM/archive/c8997ebf154f3b42e688e670a7d0fa045b7a32a0.tar.gz",
239-
patches = ["@proxy_wasm_cpp_host//bazel/external:wavm.patch"],
240-
patch_args = ["-p1"],
236+
sha256 = "7cfa3d7334c96f89553bb44eeee736a192826a78b4db114042d38d6882748f5b",
237+
strip_prefix = "WAVM-nightly-2022-05-14",
238+
url = "https://github.com/WAVM/WAVM/archive/refs/tags/nightly/2022-05-14.tar.gz",
241239
)
242240

243241
native.bind(

test/runtime_test.cc

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,6 @@ TEST_P(TestVm, Trap) {
165165
}
166166

167167
TEST_P(TestVm, Trap2) {
168-
if (engine_ == "wavm") {
169-
// TODO(mathetake): Somehow WAVM exits with 'munmap_chunk(): invalid pointer' on unidentified
170-
// build condition in 'libstdc++ abi::__cxa_demangle' originally from
171-
// WAVM::Runtime::describeCallStack. Needs further investigation.
172-
return;
173-
}
174168
auto source = readTestWasmFile("trap.wasm");
175169
ASSERT_FALSE(source.empty());
176170
auto wasm = TestWasm(std::move(vm_));

0 commit comments

Comments
 (0)