1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-04-03 16:31:02 +00:00
wasmer/tests/exception_handling.rs

26 lines
704 B
Rust
Raw Normal View History

mod runtime_core_tests;
2020-04-06 14:13:54 -07:00
pub mod runtime_core_exception_handling {
use super::runtime_core_tests::{get_compiler, wat2wasm};
use wasmer_runtime_core::{compile_with, imports};
2020-04-06 14:13:54 -07:00
#[test]
fn exception_handling_works() {
const MODULE: &str = r#"
(module
(func (export "throw_trap")
unreachable
))
"#;
2020-04-06 14:13:54 -07:00
let wasm_binary = wat2wasm(MODULE.as_bytes()).expect("WAST not valid or malformed");
let module = compile_with(&wasm_binary, &get_compiler()).unwrap();
2020-04-06 14:13:54 -07:00
let imports = imports! {};
for _ in 0..2 {
let instance = module.instantiate(&imports).unwrap();
assert!(instance.call("throw_trap", &[]).is_err());
}
}
}