diff options
author | Araq <rumpf_a@web.de> | 2015-02-10 22:23:38 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-02-10 22:23:38 +0100 |
commit | 4ce3c77031d1fa9895431db405e1185c9ae7338b (patch) | |
tree | 510141911c9cd3776f41c508d292606d44928330 | |
parent | 0284e8d11c5f93f1ff6c44f83ca8e4ba73365c98 (diff) | |
download | Nim-4ce3c77031d1fa9895431db405e1185c9ae7338b.tar.gz |
increase limit for 64bit systems
-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 00620fed3..a16468c7e 100644 --- a/tests/gc/growobjcrash.nim +++ b/tests/gc/growobjcrash.nim @@ -14,7 +14,7 @@ proc handleRequest(query: string): StringTableRef = let x = foo result = x() -const Limit = when compileOption("gc", "markAndSweep"): 5*1024*1024 else: 500_000 +const Limit = when compileOption("gc", "markAndSweep"): 5*1024*1024 else: 700_000 proc main = var counter = 0 |