summary refs log tree commit diff stats
path: root/tests/gc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gc')
-rw-r--r--tests/gc/thavlak.nim10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/gc/thavlak.nim b/tests/gc/thavlak.nim
index cc0095fbc..09c07785e 100644
--- a/tests/gc/thavlak.nim
+++ b/tests/gc/thavlak.nim
@@ -5,9 +5,9 @@ Constructing Simple CFG...
 Constructing CFG...
 Performing Loop Recognition
 1 Iteration
-Another 50 iterations...
-..................................................
-Found 1 loops (including artificial root node) (50)'''
+Another 5 iterations...
+.....
+Found 1 loops (including artificial root node) (5)'''
 """
 
 # bug #3184
@@ -442,10 +442,10 @@ proc run(self: var LoopTesterApp) =
   var h = newHavlakLoopFinder(self.cfg, newLsg())
   var loops = h.findLoops
 
-  echo "Another 50 iterations..."
+  echo "Another 5 iterations..."
 
   var sum = 0
-  for i in 1..50:
+  for i in 1..5:
     write stdout, "."
     flushFile(stdout)
     var hlf = newHavlakLoopFinder(self.cfg, newLsg())