aboutsummaryrefslogtreecommitdiff
path: root/tests/generate.py
blob: 08c2d5b1a8b7aeb982e56eb757ac23247ce6005c (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/python
import os
a=""
for i in xrange(4096):
	a+=chr(i % 256);
while True:
	try:
		os.write(1,a)
	except:
		exit(0)