Skip to content

Commit af0f8c3

Browse files
committed
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 <[email protected]>
1 parent 42b0e6c commit af0f8c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dsymbol/src/dsymbol/tests.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ version (linux) unittest
576576
}
577577
const rssAfter = getRSS();
578578
// check the process memory increase with some eyeballed threshold
579-
assert(rssAfter - rssBefore < 5000);
579+
assert(rssAfter - rssBefore < 6_000);
580580
}
581581

582582
// this is for testing that internString data is always on the same address

0 commit comments

Comments
 (0)