summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--tests/gc/gcleak5.nim2
-rw-r--r--tests/testament/categories.nim2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/gc/gcleak5.nim b/tests/gc/gcleak5.nim
index b9131051b..9e2948729 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 f9f5698bb..442dd1212 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 -----------------------------------