1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix(bench_util): correctly run async benches in tokio context (#10736)

This commit is contained in:
Aaron O'Mullan 2021-05-21 15:42:17 +02:00 committed by GitHub
parent 4a9b40b717
commit f82e7d3bdf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,15 +64,16 @@ pub fn bench_js_async(
if is_profiling() { if is_profiling() {
for _ in 0..10000 { for _ in 0..10000 {
runtime.execute("inner_loop", src).unwrap(); tokio_runtime.block_on(inner_async(src, &mut runtime));
let future = runtime.run_event_loop();
tokio_runtime.block_on(future).unwrap();
} }
} else { } else {
b.iter(|| { b.iter(|| {
runtime.execute("inner_loop", src).unwrap(); tokio_runtime.block_on(inner_async(src, &mut runtime));
let future = runtime.run_event_loop();
tokio_runtime.block_on(future).unwrap();
}); });
} }
} }
async fn inner_async(src: &str, runtime: &mut JsRuntime) {
runtime.execute("inner_loop", src).unwrap();
runtime.run_event_loop().await.unwrap();
}