From 4ce3c77031d1fa9895431db405e1185c9ae7338b Mon Sep 17 00:00:00 2001 From: Araq Date: Tue, 10 Feb 2015 22:23:38 +0100 Subject: [PATCH] increase limit for 64bit systems --- tests/gc/growobjcrash.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gc/growobjcrash.nim b/tests/gc/growobjcrash.nim index 00620fed3c..a16468c7e8 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