1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-29 13:01:13 +03:00

A few test cases for benchmarks

This commit is contained in:
Aris Adamantiadis
2009-11-05 18:18:35 +01:00
parent efded18724
commit ab0d8a3828
3 changed files with 36 additions and 0 deletions

10
tests/generate.py Executable file
View File

@ -0,0 +1,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)