diff options
author | Araq <rumpf_a@web.de> | 2018-08-05 09:20:30 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-08-05 09:20:30 +0200 |
commit | 74842ed4a981b6ff168d67d05ee92dce350549cb (patch) | |
tree | 340492e628bc30e38a3765210d9f461e78e8e0a8 /tests/gc | |
parent | c9f2c16da14357ee5f05efb890ebb141258ab061 (diff) | |
download | Nim-74842ed4a981b6ff168d67d05ee92dce350549cb.tar.gz |
make growobjcrash complete earlier
Diffstat (limited to 'tests/gc')
-rw-r--r-- | tests/gc/growobjcrash.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gc/growobjcrash.nim b/tests/gc/growobjcrash.nim index b8ff4f908..07f92b8f4 100644 --- a/tests/gc/growobjcrash.nim +++ b/tests/gc/growobjcrash.nim @@ -18,7 +18,7 @@ const Limit = 5*1024*1024 proc main = var counter = 0 - for i in 0 .. 10_000_000: + for i in 0 .. 100_000: for k, v in handleRequest("nick=Elina2&type=activate"): inc counter if counter mod 100 == 0: |