rust-osdev / bootimage

Tool to create bootable disk images from a Rust OS kernel.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Feature Request - Parallelism

rybot666 opened this issue · comments

Can we have a way to select the first x tests, so that we can run (for example) 4 testing Jobs running bootimage test

You mean that bootimage test should spawn e.g. 4 threads and execute the tests in parallel? If so, I think we could implement this by parallelizing this for loop with the rayon crate. Do you mind sending in a PR?