summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2018-01-10 10:01:33 +0100
committerAraq <rumpf_a@web.de>2018-01-10 10:01:33 +0100
commit13e9f8aac1b8636c6a45b07c72fc27c1b311e824 (patch)
treed03fa75af045136b88be668e6d3400fb4f2168f2 /tests
parentb6b99da08ff52095a6ab409aa2fa91d381179ab9 (diff)
downloadNim-13e9f8aac1b8636c6a45b07c72fc27c1b311e824.tar.gz
make tfragment_gc more robust for Appveyor
Diffstat (limited to 'tests')
-rw-r--r--tests/fragmentation/tfragment_gc.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fragmentation/tfragment_gc.nim b/tests/fragmentation/tfragment_gc.nim
index 92367a6dd..3ebed2393 100644
--- a/tests/fragmentation/tfragment_gc.nim
+++ b/tests/fragmentation/tfragment_gc.nim
@@ -20,7 +20,7 @@ let total = getTotalMem()
 
 # Concrete values on Win64: 58.152MiB / 188.285MiB
 
-let occupiedOk = occ < 64 * 1024 * 1024
+let occupiedOk = occ < 80 * 1024 * 1024
 if not occupiedOk:
   echo "occupied ", formatSize(occ)
 echo "occupied ok: ", occupiedOk