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
parent 42b0e6c2a2
commit af0f8c3976
No known key found for this signature in database
GPG Key ID: A77592589DE3AA19
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