From 849664744bf2272d579af0a1718d5ee0f09a2233 Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Tue, 9 Jan 2018 13:00:22 +0100 Subject: [PATCH] another attempt to make the fragmentation test more robust for Windows --- tests/fragmentation/tfragment_gc.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fragmentation/tfragment_gc.nim b/tests/fragmentation/tfragment_gc.nim index 1781f66105..92367a6dd9 100644 --- a/tests/fragmentation/tfragment_gc.nim +++ b/tests/fragmentation/tfragment_gc.nim @@ -24,7 +24,7 @@ let occupiedOk = occ < 64 * 1024 * 1024 if not occupiedOk: echo "occupied ", formatSize(occ) echo "occupied ok: ", occupiedOk -let totalOk = total < 210 * 1024 * 1024 +let totalOk = total < 230 * 1024 * 1024 if not totalOk: echo "total peak memory ", formatSize(total) echo "total ok: ", totalOk