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

Increase SimpleActorTest's fibers and counting volume

parent 4fde6d87
No related branches found
No related tags found
No related merge requests found
......@@ -29,8 +29,8 @@ public:
static void mainFiber(void* runtime_ptr) {
Runtime& runtime = * (Runtime*) runtime_ptr;
const unsigned int FIBER_COUNT = 2;
const uint64_t FIBERS_COUNT_TO = 2;
const unsigned int FIBER_COUNT = 1000;
const uint64_t FIBERS_COUNT_TO = 1000;
const uint64_t PER_FIBER_SUM = (FIBERS_COUNT_TO * (FIBERS_COUNT_TO + 1)) / 2;
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