mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
style: Allow 16% false positives in test bloom::create_and_insert_some_stuff.
It seems that the result of hash algorithm used in bloom filter depends on the pointer length. On 64bit platforms, there are 135 false positives in the first part of that test, and 8 in the second part. However, on 32bit platforms, the numbers become 157 and 16 correspondingly. 16 is still less than 20% in the second part, so all fine, but 157 is slightly larger than 15% in the test assertion. Given it is what we are shipping, we probably should just accept this and loosen the assertion. Bug: 1457524 Reviewed-by: heycam MozReview-Commit-ID: 9kFXBzLFAzE
This commit is contained in:
parent
12913d048f
commit
09b22ab2dc
1 changed files with 1 additions and 1 deletions
|
@ -335,7 +335,7 @@ fn create_and_insert_some_stuff() {
|
|||
|
||||
let false_positives = (1001_usize..2000).filter(|i| bf.might_contain(i)).count();
|
||||
|
||||
assert!(false_positives < 150, "{} is not < 150", false_positives); // 15%.
|
||||
assert!(false_positives < 160, "{} is not < 160", false_positives); // 16%.
|
||||
|
||||
for i in 0_usize..100 {
|
||||
bf.remove(&i);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue