Browse Source
wasmtime: let serialization mismatch tests pass with `RUST_BACKTRACE=1` set (#4525)
pull/4529/head
Nick Fitzgerald
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
6 deletions
-
crates/wasmtime/src/module/serialization.rs
|
@ -610,14 +610,13 @@ mod test { |
|
|
|
|
|
|
|
|
match serialized.into_module(&engine) { |
|
|
match serialized.into_module(&engine) { |
|
|
Ok(_) => unreachable!(), |
|
|
Ok(_) => unreachable!(), |
|
|
Err(e) => assert_eq!( |
|
|
Err(e) => assert!(format!("{:?}", e).starts_with( |
|
|
format!("{:?}", e), |
|
|
|
|
|
"\ |
|
|
"\ |
|
|
compilation settings of module incompatible with native host |
|
|
compilation settings of module incompatible with native host |
|
|
|
|
|
|
|
|
Caused by: |
|
|
Caused by: |
|
|
setting \"avoid_div_traps\" is configured to Bool(false) which is not supported" |
|
|
setting \"avoid_div_traps\" is configured to Bool(false) which is not supported" |
|
|
), |
|
|
)), |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
Ok(()) |
|
|
Ok(()) |
|
@ -637,14 +636,13 @@ Caused by: |
|
|
|
|
|
|
|
|
match serialized.into_module(&engine) { |
|
|
match serialized.into_module(&engine) { |
|
|
Ok(_) => unreachable!(), |
|
|
Ok(_) => unreachable!(), |
|
|
Err(e) => assert_eq!( |
|
|
Err(e) => assert!(format!("{:?}", e).starts_with( |
|
|
format!("{:?}", e), |
|
|
|
|
|
"\ |
|
|
"\ |
|
|
compilation settings of module incompatible with native host |
|
|
compilation settings of module incompatible with native host |
|
|
|
|
|
|
|
|
Caused by: |
|
|
Caused by: |
|
|
cannot test if target-specific flag \"not_a_flag\" is available at runtime", |
|
|
cannot test if target-specific flag \"not_a_flag\" is available at runtime", |
|
|
), |
|
|
)), |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
Ok(()) |
|
|
Ok(()) |
|
|