wzip tests

This commit is contained in:
Remzi Arpaci-Dusseau
2019-02-16 08:06:01 -05:00
parent aaa4f45784
commit 6cb2958151
42 changed files with 36908 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#! /usr/bin/env python3
import random
import string
for i in range(1000000):
x = ''
letter = random.choice(string.ascii_lowercase + '\n')
if letter == '\n':
x += letter
else:
for i in range(int(random.random() * 20) + 1):
x += letter
print(x, end='')