From af0f8c3976d92da8f7b0ce0d76eb25ecaa7fe6b4 Mon Sep 17 00:00:00 2001 From: Andrei Horodniceanu Date: Wed, 2 Jul 2025 20:54:19 +0300 Subject: [PATCH] dsymbol/tests.d: Increase memory threshold approximation out of 200 runs 26 were above the current 5000 threshold, with the highest being 5279. Signed-off-by: Andrei Horodniceanu --- dsymbol/src/dsymbol/tests.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsymbol/src/dsymbol/tests.d b/dsymbol/src/dsymbol/tests.d index 7527f19..940608b 100644 --- a/dsymbol/src/dsymbol/tests.d +++ b/dsymbol/src/dsymbol/tests.d @@ -576,7 +576,7 @@ version (linux) unittest } const rssAfter = getRSS(); // check the process memory increase with some eyeballed threshold - assert(rssAfter - rssBefore < 5000); + assert(rssAfter - rssBefore < 6_000); } // this is for testing that internString data is always on the same address