debug logging
This commit is contained in:
parent
3f8ead1485
commit
74901c0842
|
@ -148,6 +148,9 @@ fuzz_target!(|module: wasm_smith::ConfiguredModule<Config>| {
|
||||||
.filter_map(|e| e.into_memory())
|
.filter_map(|e| e.into_memory())
|
||||||
.collect();
|
.collect();
|
||||||
|
|
||||||
|
log::info!("a_globals = {:?}", a_globals);
|
||||||
|
log::info!("b_globals = {:?}", b_globals);
|
||||||
|
|
||||||
assert_eq!(a_globals.len(), b_globals.len());
|
assert_eq!(a_globals.len(), b_globals.len());
|
||||||
for (a, b) in a_globals.into_iter().zip(b_globals.into_iter()) {
|
for (a, b) in a_globals.into_iter().zip(b_globals.into_iter()) {
|
||||||
match (a, b) {
|
match (a, b) {
|
||||||
|
|
Loading…
Reference in a new issue