Run tests with sanitizers (#274)

As `wasm32-wasi` target doesn't seem to support sanitizers, we are to
execute tests with native code.  The feature `test_with_native_code` is
introduced for that.

Closes #247.
This commit is contained in:
Ivan Boldyrev
2022-06-10 08:28:40 +03:00
committed by GitHub
parent 56609c276f
commit e0f6fa1b4d
8 changed files with 180 additions and 35 deletions

View File

@ -29,6 +29,11 @@ pub mod call_services;
pub mod executed_state;
pub mod test_runner;
#[cfg(feature = "test_with_native_code")]
mod native_test_runner;
#[cfg(not(feature = "test_with_native_code"))]
mod wasm_test_runner;
pub use air::interpreter_data::*;
pub use avm_server::raw_outcome::*;
pub use avm_server::*;