diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2017-12-07 20:30:51 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-12-07 20:30:51 +0100 |
commit | c99654a78e4b00507b1416dd97b53de6f78c84c3 (patch) | |
tree | 68ff671d112e4fd3fd06e1860ee420bf84f7ead3 /tests | |
parent | c96e1d0180daebd67a4e48d7665069d70164789d (diff) | |
download | Nim-c99654a78e4b00507b1416dd97b53de6f78c84c3.tar.gz |
lets see what appveyor reports as the used memory
Diffstat (limited to 'tests')
-rw-r--r-- | tests/fragmentation/tfragment_gc.nim | 5 |
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) |