summary refs log tree commit diff stats
path: root/tests/gc
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2018-10-17 13:20:45 +0200
committerAraq <rumpf_a@web.de>2018-10-17 13:20:45 +0200
commit81e33b9d874cd400d61b0e9df21e7367ea430dc3 (patch)
tree25fdbdcf8852e94b002122e9d560a7da604caa1a /tests/gc
parentbd9d5787f06a1f3e259055268824a852cd160798 (diff)
downloadNim-81e33b9d874cd400d61b0e9df21e7367ea430dc3.tar.gz
make thavlak and tmarkerproc_regression tests take fewer iterations in order to speedup the CIs
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())
>12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101