wasmtime: let serialization mismatch tests pass with RUST_BACKTRACE=1 set (#4525)

This commit is contained in:
Nick Fitzgerald
2022-07-25 16:38:04 -07:00
committed by GitHub
parent 97894bc65e
commit 81bff71d11

View File

@@ -610,14 +610,13 @@ mod test {
match serialized.into_module(&engine) {
Ok(_) => unreachable!(),
Err(e) => assert_eq!(
format!("{:?}", e),
Err(e) => assert!(format!("{:?}", e).starts_with(
"\
compilation settings of module incompatible with native host
Caused by:
setting \"avoid_div_traps\" is configured to Bool(false) which is not supported"
),
)),
}
Ok(())
@@ -637,14 +636,13 @@ Caused by:
match serialized.into_module(&engine) {
Ok(_) => unreachable!(),
Err(e) => assert_eq!(
format!("{:?}", e),
Err(e) => assert!(format!("{:?}", e).starts_with(
"\
compilation settings of module incompatible with native host
Caused by:
cannot test if target-specific flag \"not_a_flag\" is available at runtime",
),
)),
}
Ok(())