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.
27 lines
515 B
27 lines
515 B
function test() {
|
|
var tmp1 = [];
|
|
var tmp2 = [];
|
|
var i, n;
|
|
|
|
print('build');
|
|
for (i = 0; i < 1024; i++) {
|
|
tmp1.push(Math.floor(Math.random() * 16).toString(16))
|
|
}
|
|
tmp1 = tmp1.join('');
|
|
for (i = 0; i < 1024; i++) {
|
|
tmp2.push(tmp1);
|
|
}
|
|
tmp2 = tmp2.join('');
|
|
|
|
print(tmp2.length);
|
|
print('run');
|
|
for (i = 0; i < 10000; i++) {
|
|
Duktape.dec('hex', tmp2);
|
|
}
|
|
}
|
|
|
|
if (typeof Duktape === 'object') {
|
|
test();
|
|
} else {
|
|
// Ignore on e.g. Rhino
|
|
}
|
|
|