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.
21 lines
392 B
21 lines
392 B
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(2000):
|
|
res = tmp2.encode('base64')
|
|
|
|
test()
|
|
|