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 <a.horodniceanu@proton.me>
This commit is contained in:
Andrei Horodniceanu 2025-07-02 20:54:19 +03:00 committed by Jan Jurzitza
parent 3b1f0abfd8
commit c79850d38e
1 changed files with 1 additions and 1 deletions

View File

@ -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