benches: fix benchmarking conflicts (#6243)

This commit is contained in:
Alice Ryhl 2023-12-22 23:43:05 +01:00 committed by GitHub
parent 53ad102cf0
commit 7cae89af47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -80,10 +80,10 @@ fn rt() -> Runtime {
}
criterion_group!(
scheduler,
rt_curr_scheduler,
spawn_many_local,
spawn_many_remote_idle,
spawn_many_remote_busy
);
criterion_main!(scheduler);
criterion_main!(rt_curr_scheduler);

View File

@ -263,7 +263,7 @@ fn stall() {
}
criterion_group!(
scheduler,
rt_multi_scheduler,
spawn_many_local,
spawn_many_remote_idle,
spawn_many_remote_busy1,
@ -273,4 +273,4 @@ criterion_group!(
chained_spawn,
);
criterion_main!(scheduler);
criterion_main!(rt_multi_scheduler);