diff --git a/src/runtime2/tests/mod.rs b/src/runtime2/tests/mod.rs index 7f63fc5e48dd55ea6a5b0a10dd46b113bf4a388e..c0fd39082af541d28257a921922101ba7993011a 100644 --- a/src/runtime2/tests/mod.rs +++ b/src/runtime2/tests/mod.rs @@ -11,12 +11,12 @@ use crate::protocol::eval::*; use crate::runtime2::native::{ApplicationSyncAction}; // Generic testing constants, use when appropriate to simplify stress-testing -// pub(crate) const NUM_THREADS: u32 = 3; // number of threads in runtime -// pub(crate) const NUM_INSTANCES: u32 = 7; // number of test instances constructed -// pub(crate) const NUM_LOOPS: u32 = 8; // number of loops within a single test (not used by all tests) +// pub(crate) const NUM_THREADS: u32 = 8; // number of threads in runtime +// pub(crate) const NUM_INSTANCES: u32 = 250; // number of test instances constructed +// pub(crate) const NUM_LOOPS: u32 = 10; // number of loops within a single test (not used by all tests) -pub(crate) const NUM_THREADS: u32 = 2; -pub(crate) const NUM_INSTANCES: u32 = 2; +pub(crate) const NUM_THREADS: u32 = 6; +pub(crate) const NUM_INSTANCES: u32 = 1; pub(crate) const NUM_LOOPS: u32 = 15;