mirror of
https://github.com/borgbackup/borg.git
synced 2025-01-03 05:35:58 +00:00
add comment about how to provoke more collisions
This commit is contained in:
parent
9697f55534
commit
3e33656238
1 changed files with 7 additions and 2 deletions
|
@ -8,9 +8,14 @@
|
|||
|
||||
@pytest.mark.skipif("BORG_TESTS_SLOW" not in os.environ, reason="slow tests not enabled, use BORG_TESTS_SLOW=1")
|
||||
def test_hashindex_stress():
|
||||
"""checks if the hashtable behaves as expected"""
|
||||
"""checks if the hashtable behaves as expected
|
||||
|
||||
This can be used in _hashindex.c before running this test to provoke more collisions (don't forget to compile):
|
||||
#define HASH_MAX_LOAD .99
|
||||
#define HASH_MAX_EFF_LOAD .999
|
||||
"""
|
||||
ENTRIES = 10000
|
||||
LOOPS = 100
|
||||
LOOPS = 1000
|
||||
idx = NSIndex()
|
||||
kv = {}
|
||||
for i in range(LOOPS):
|
||||
|
|
Loading…
Reference in a new issue