diff --git a/src/runtime2/tests/mod.rs b/src/runtime2/tests/mod.rs index 31d3f161c6d982dd33fee742b5f57224dd756947..3de2cced47acc7d12adcecc814e2290966161505 100644 --- a/src/runtime2/tests/mod.rs +++ b/src/runtime2/tests/mod.rs @@ -11,13 +11,13 @@ 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 = 8; // number of threads in runtime -pub(crate) const NUM_INSTANCES: u32 = 1500; // 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 = 8; // number of threads in runtime +// pub(crate) const NUM_INSTANCES: u32 = 750; // 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 = 6; -// pub(crate) const NUM_INSTANCES: u32 = 1; -// pub(crate) const NUM_LOOPS: u32 = 15; +pub(crate) const NUM_THREADS: u32 = 6; +pub(crate) const NUM_INSTANCES: u32 = 1; +pub(crate) const NUM_LOOPS: u32 = 1; fn create_runtime(pdl: &str) -> Runtime {