diff --git a/src/runtime2/tests/mod.rs b/src/runtime2/tests/mod.rs index 7b2900640ff08e539807ed562ad6de738598aa01..79417ff2af586b2530f86f6610348643eea104e5 100644 --- a/src/runtime2/tests/mod.rs +++ b/src/runtime2/tests/mod.rs @@ -5,7 +5,7 @@ use crate::{PortId, ProtocolDescription}; use crate::common::Id; use crate::protocol::eval::*; -const NUM_THREADS: u32 = 1; // number of threads in runtime +const NUM_THREADS: u32 = 10; // number of threads in runtime const NUM_INSTANCES: u32 = 10; // number of test instances constructed const NUM_LOOPS: u32 = 10; // number of loops within a single test (not used by all tests) @@ -50,7 +50,6 @@ fn test_put_and_get() { print(\"getting!\"); auto result = get(receiver); assert(result); - } index += 1; }