From c3adc19f471ddddf0cab9a92908dcdbede26b3eb Mon Sep 17 00:00:00 2001 From: Araq Date: Fri, 7 Feb 2014 18:49:41 +0100 Subject: [PATCH] tester compiles again --- tests/gc/gcleak5.nim | 2 +- tests/testament/categories.nim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/gc/gcleak5.nim b/tests/gc/gcleak5.nim index b9131051b0..9e2948729e 100644 --- a/tests/gc/gcleak5.nim +++ b/tests/gc/gcleak5.nim @@ -14,7 +14,7 @@ proc main = if i mod 100 == 0: let om = getOccupiedMem() - echo "memory: ", om + #echo "memory: ", om if om > 100_000: quit "leak" inc(i) diff --git a/tests/testament/categories.nim b/tests/testament/categories.nim index f9f5698bbb..442dd12123 100644 --- a/tests/testament/categories.nim +++ b/tests/testament/categories.nim @@ -129,7 +129,7 @@ proc gcTests(r: var TResults, cat: Category, options: string) = test "cycleleak" test "closureleak" test "refarrayleak" - rest "stackrefleak" + test "stackrefleak" # ------------------------- threading tests -----------------------------------