summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2017-12-07 20:30:51 +0100
committerAndreas Rumpf <rumpf_a@web.de>2017-12-07 20:30:51 +0100
commitc99654a78e4b00507b1416dd97b53de6f78c84c3 (patch)
tree68ff671d112e4fd3fd06e1860ee420bf84f7ead3 /tests
parentc96e1d0180daebd67a4e48d7665069d70164789d (diff)
downloadNim-c99654a78e4b00507b1416dd97b53de6f78c84c3.tar.gz
lets see what appveyor reports as the used memory
Diffstat (limited to 'tests')
-rw-r--r--tests/fragmentation/tfragment_gc.nim5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/fragmentation/tfragment_gc.nim b/tests/fragmentation/tfragment_gc.nim
index 42f2f1cf6..064e8b360 100644
--- a/tests/fragmentation/tfragment_gc.nim
+++ b/tests/fragmentation/tfragment_gc.nim
@@ -21,4 +21,7 @@ let total = getTotalMem()
 # Concrete values on Win64: 58.152MiB / 188.285MiB
 
 echo "occupied ok: ", occ < 60 * 1024 * 1024
-echo "total ok: ", total < 200 * 1024 * 1024
+let totalOk = total < 210 * 1024 * 1024
+echo "total ok: ", totalOk
+if not totalOk:
+  echo "total peak memory ", formatSize(total)