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
409 B
22 lines
409 B
import math
|
|
import random
|
|
|
|
def test():
|
|
tmp1 = []
|
|
tmp2 = []
|
|
|
|
print('build')
|
|
for i in xrange(1024):
|
|
tmp1.append(chr(random.randint(0, 127)))
|
|
tmp1 = ''.join(tmp1)
|
|
for i in xrange(1024):
|
|
tmp2.append(tmp1)
|
|
tmp2 = ''.join(tmp2)
|
|
tmp2 = tmp2.encode('base64')
|
|
|
|
print(len(tmp2))
|
|
print('run')
|
|
for i in xrange(2000):
|
|
res = tmp2.decode('base64')
|
|
|
|
test()
|
|
|