mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
342 B
22 lines
342 B
10 years ago
|
import math
|
||
|
import random
|
||
|
|
||
|
def test():
|
||
|
tmp1 = []
|
||
|
tmp2 = []
|
||
|
|
||
|
print('build')
|
||
|
for i in xrange(1024):
|
||
|
tmp1.append(chr(int(math.floor(random.random() * 256))))
|
||
|
tmp1 = ''.join(tmp1)
|
||
|
for i in xrange(1024):
|
||
|
tmp2.append(tmp1)
|
||
|
tmp2 = ''.join(tmp2)
|
||
|
|
||
|
print(len(tmp2))
|
||
|
print('run')
|
||
|
for i in xrange(10000):
|
||
|
ign = tmp2.encode('hex')
|
||
|
|
||
|
test()
|