diff --git a/src/runtime2/tests/mod.rs b/src/runtime2/tests/mod.rs index f206f105f1c8485276b6d69fd891a5337d2a413a..3c2ce3c1a3b75f637a20b7534adf698a2395cefd 100644 --- a/src/runtime2/tests/mod.rs +++ b/src/runtime2/tests/mod.rs @@ -9,12 +9,10 @@ use crate::common::Id; 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 = 1; // number of threads in runtime -pub(crate) const NUM_INSTANCES: u32 = 1; // number of test instances constructed -pub(crate) const NUM_LOOPS: u32 = 1; // number of loops within a single test (not used by all tests) +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) fn create_runtime(pdl: &str) -> Runtime { let protocol = ProtocolDescription::parse(pdl.as_bytes()).expect("parse pdl");