Adds a test to ensure that we clear the heap between calls into runtime (#4903)

* Adds a test to ensure that we clear the heap between calls into runtime

The tests shows that we currently not clearing the heap in wasmtime.
For now we don't run the test for wasmtime.

* Fix compilation
This commit is contained in:
Bastian Köcher
2020-02-14 01:42:27 +01:00
committed by GitHub
parent 78b5a06200
commit d3fa8c91af
6 changed files with 81 additions and 4 deletions
@@ -17,7 +17,7 @@
//! Definitions for a wasm runtime.
use crate::error::Error;
use sp_wasm_interface::Function;
use sp_wasm_interface::{Function, Value};
/// A trait that defines an abstract wasm runtime.
///
@@ -28,4 +28,7 @@ pub trait WasmRuntime {
/// Call a method in the Substrate runtime by name. Returns the encoded result on success.
fn call(&mut self, method: &str, data: &[u8]) -> Result<Vec<u8>, Error>;
/// Get the value from a global with the given `name`.
fn get_global_val(&self, name: &str) -> Result<Option<Value>, Error>;
}