mirror of
https://github.com/fluencelabs/aquavm
synced 2025-06-27 13:41:32 +00:00
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:
@ -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::*;
|
||||
|
Reference in New Issue
Block a user