diff options
author | Araq <rumpf_a@web.de> | 2018-10-17 13:20:45 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-10-17 13:20:45 +0200 |
commit | 81e33b9d874cd400d61b0e9df21e7367ea430dc3 (patch) | |
tree | 25fdbdcf8852e94b002122e9d560a7da604caa1a /tests/gc | |
parent | bd9d5787f06a1f3e259055268824a852cd160798 (diff) | |
download | Nim-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.nim | 10 |
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()) |