1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-25 17:27:31 +00:00

fix invalid param issue in benchmarks

fixes CID1431887
This commit is contained in:
Thomas Waldmann 2017-04-29 03:00:59 +02:00
parent c43cfb708f
commit d949d6bc7c

View file

@ -40,9 +40,11 @@ def testdata(request, tmpdir_factory):
# do not use a binary zero (\0) to avoid sparse detection
def data(size):
return b'0' * size
if data_type == 'random':
elif data_type == 'random':
def data(size):
return os.urandom(size)
else:
raise ValueError("data_type must be 'random' or 'zeros'.")
for i in range(count):
with open(str(p.join(str(i))), "wb") as f:
f.write(data(size))