diff --git a/src/runtime2/tests/mod.rs b/src/runtime2/tests/mod.rs index f31961a21b2eac002190fb3c8c9bb557a937082c..f206f105f1c8485276b6d69fd891a5337d2a413a 100644 --- a/src/runtime2/tests/mod.rs +++ b/src/runtime2/tests/mod.rs @@ -1,6 +1,7 @@ mod network_shapes; mod api_component; mod speculation_basic; +mod basics; use super::*; use crate::{PortId, ProtocolDescription}; @@ -11,9 +12,9 @@ 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 = 5; // number of test instances constructed -pub(crate) const NUM_LOOPS: u32 = 5; // number of loops within a single test (not used by all tests) +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) fn create_runtime(pdl: &str) -> Runtime { let protocol = ProtocolDescription::parse(pdl.as_bytes()).expect("parse pdl");