Parallelize over cases

This commit is contained in:
Omar Abdulla
2025-07-31 13:46:27 +03:00
parent 330a773a1c
commit 989c064983
5 changed files with 151 additions and 136 deletions
+7 -3
View File
@@ -92,9 +92,13 @@ pub struct Arguments {
#[arg(long = "compile-only")]
pub compile_only: Option<TestingPlatform>,
/// Determines the amount of tests that are executed in parallel.
#[arg(long = "workers", default_value = "12")]
pub workers: usize,
/// Determines the amount of nodes that will be spawned for each chain.
#[arg(long, default_value = "12")]
pub number_of_nodes: usize,
/// Determines the amount of threads that will will be used.
#[arg(long, default_value = "12")]
pub number_of_threads: usize,
/// Extract problems back to the test corpus.
#[arg(short, long = "extract-problems")]