mirror of https://github.com/lukechilds/node.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.
23 lines
555 B
23 lines
555 B
/* eslint no-deepEqual: 0 */
|
|
'use strict';
|
|
var common = require('../common.js');
|
|
var assert = require('assert');
|
|
var bench = common.createBenchmark(main, {
|
|
type: ('Int8Array Uint8Array Int16Array Uint16Array Int32Array Uint32Array ' +
|
|
'Float32Array Float64Array Uint8ClampedArray').split(' '),
|
|
n: [1]
|
|
});
|
|
|
|
function main(conf) {
|
|
var type = conf.type;
|
|
var clazz = global[type];
|
|
var n = +conf.n;
|
|
|
|
bench.start();
|
|
var actual = new clazz(n * 1e6);
|
|
var expected = new clazz(n * 1e6);
|
|
|
|
assert.deepEqual(actual, expected);
|
|
|
|
bench.end(n);
|
|
}
|
|
|