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
42b0e6c2a2
commit
af0f8c3976
|
|
@ -576,7 +576,7 @@ version (linux) unittest
|
||||||
}
|
}
|
||||||
const rssAfter = getRSS();
|
const rssAfter = getRSS();
|
||||||
// check the process memory increase with some eyeballed threshold
|
// 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
|
// this is for testing that internString data is always on the same address
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue