Make all tests pass

This commit is contained in:
Syrus 2019-12-20 21:00:06 -08:00
parent d7154fe791
commit 18421e3623
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
## **[Unreleased]**
- [#1098](https://github.com/wasmerio/wasmer/pull/1098) Remove `backend::Backend` from `wasmer_runtime_core`
- [#1097](https://github.com/wasmerio/wasmer/pull/1097) Move inline breakpoint outside of runtime backend
- [#1095](https://github.com/wasmerio/wasmer/pull/1095) Update to cranelift 0.52.
- [#1092](https://github.com/wasmerio/wasmer/pull/1092) Add `get_utf8_string_with_nul` to `WasmPtr` to read nul-terminated strings from memory.

View File

@ -32,7 +32,7 @@ use std::{
};
use wasmer_runtime_core::{
backend::{Backend, CacheGen, CompilerConfig, Token},
backend::{CacheGen, CompilerConfig, Token},
cache::{Artifact, Error as CacheError},
codegen::*,
memory::MemoryType,