Do another GC after running Wasm in the table_ops test oracle

This commit is contained in:
Nick Fitzgerald
2022-01-27 14:13:16 -08:00
parent cc8d7778e2
commit f292ff55cf

View File

@@ -540,6 +540,9 @@ pub fn table_ops(mut fuzz_config: generators::Config, ops: generators::table_ops
.map(|_| Val::ExternRef(Some(ExternRef::new(CountDrops(num_dropped.clone())))))
.collect();
let _ = run.call(&mut store, &args, &mut []);
// Do a final GC after running the Wasm.
store.gc();
}
assert_eq!(num_dropped.load(SeqCst), expected_drops.load(SeqCst));