From 5e4cceada796060a8fc57e845a49f7aba87bea04 Mon Sep 17 00:00:00 2001
From: Florian Schmaus <flow@cs.fau.de>
Date: Mon, 19 Jun 2017 08:17:11 +0200
Subject: [PATCH] Increase SimpleActorTest's fibers and counting volume

---
 tests/SimpleActorTest.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/SimpleActorTest.cpp b/tests/SimpleActorTest.cpp
index 8fbed14a..657631ea 100644
--- a/tests/SimpleActorTest.cpp
+++ b/tests/SimpleActorTest.cpp
@@ -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;
 
-- 
GitLab