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:
parent
3b1f0abfd8
commit
c79850d38e
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue