Skip to content
Snippets Groups Projects
Commit 6b14afa7 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Make SimpleActorTest even simpler

parent 9736af95
No related branches found
No related tags found
No related merge requests found
...@@ -29,8 +29,8 @@ public: ...@@ -29,8 +29,8 @@ public:
static void mainFiber(void* runtime_ptr) { static void mainFiber(void* runtime_ptr) {
Runtime& runtime = * (Runtime*) runtime_ptr; Runtime& runtime = * (Runtime*) runtime_ptr;
const unsigned int FIBER_COUNT = 10; const unsigned int FIBER_COUNT = 2;
const uint64_t FIBERS_COUNT_TO = 100; const uint64_t FIBERS_COUNT_TO = 2;
const uint64_t PER_FIBER_SUM = (FIBERS_COUNT_TO * (FIBERS_COUNT_TO + 1)) / 2; const uint64_t PER_FIBER_SUM = (FIBERS_COUNT_TO * (FIBERS_COUNT_TO + 1)) / 2;
const uint64_t EXPECTED_SUM = FIBER_COUNT * PER_FIBER_SUM; const uint64_t EXPECTED_SUM = FIBER_COUNT * PER_FIBER_SUM;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment