Skip to content

Commit

Permalink
benchmark: fix lint errors
Browse files Browse the repository at this point in the history
PR-URL: #5517
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Evan Lucas <evanlucas@me.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
Trott authored and Fishrock123 committed Mar 8, 2016
1 parent 4729974 commit 65f4ecc
Show file tree
Hide file tree
Showing 16 changed files with 60 additions and 26 deletions.
4 changes: 3 additions & 1 deletion benchmark/arrays/var-int.js
@@ -1,7 +1,9 @@
'use strict';
var common = require('../common.js');
var bench = common.createBenchmark(main, {
type: 'Array Buffer Int8Array Uint8Array Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array'.split(' '),
type: ['Array', 'Buffer', 'Int8Array', 'Uint8Array', 'Int16Array',
'Uint16Array', 'Int32Array', 'Uint32Array', 'Float32Array',
'Float64Array'],
n: [25]
});

Expand Down
4 changes: 3 additions & 1 deletion benchmark/arrays/zero-float.js
@@ -1,7 +1,9 @@
'use strict';
var common = require('../common.js');
var bench = common.createBenchmark(main, {
type: 'Array Buffer Int8Array Uint8Array Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array'.split(' '),
type: ['Array', 'Buffer', 'Int8Array', 'Uint8Array', 'Int16Array',
'Uint16Array', 'Int32Array', 'Uint32Array', 'Float32Array',
'Float64Array'],
n: [25]
});

Expand Down
4 changes: 3 additions & 1 deletion benchmark/arrays/zero-int.js
@@ -1,7 +1,9 @@
'use strict';
var common = require('../common.js');
var bench = common.createBenchmark(main, {
type: 'Array Buffer Int8Array Uint8Array Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array'.split(' '),
type: ['Array', 'Buffer', 'Int8Array', 'Uint8Array', 'Int16Array',
'Uint16Array', 'Int32Array', 'Uint32Array', 'Float32Array',
'Float64Array'],
n: [25]
});

Expand Down
2 changes: 1 addition & 1 deletion benchmark/buffers/buffer-creation.js
Expand Up @@ -14,7 +14,7 @@ function main(conf) {
var clazz = conf.type === 'fast' ? Buffer : SlowBuffer;
bench.start();
for (var i = 0; i < n * 1024; i++) {
b = new clazz(len);
new clazz(len);
}
bench.end(n);
}
5 changes: 4 additions & 1 deletion benchmark/buffers/buffer-indexof.js
@@ -1,6 +1,7 @@
'use strict';
var common = require('../common.js');
var fs = require('fs');
const path = require('path');

var bench = common.createBenchmark(main, {
search: ['@', 'SQ', '10x', '--l', 'Alice', 'Gryphon', 'Panther',
Expand All @@ -15,7 +16,9 @@ var bench = common.createBenchmark(main, {

function main(conf) {
var iter = (conf.iter) * 100000;
var aliceBuffer = fs.readFileSync(__dirname + '/../fixtures/alice.html');
var aliceBuffer = fs.readFileSync(
path.resolve(__dirname, '../fixtures/alice.html')
);
var search = conf.search;
var encoding = conf.encoding;

Expand Down
25 changes: 20 additions & 5 deletions benchmark/compare.js
Expand Up @@ -77,10 +77,15 @@ function run() {

var out = '';
var child;
if (Array.isArray(benchmarks) && benchmarks.length)
child = spawn(node, ['benchmark/common.js'].concat(benchmarks), { env: env });
else
if (Array.isArray(benchmarks) && benchmarks.length) {
child = spawn(
node,
['benchmark/common.js'].concat(benchmarks),
{ env: env }
);
} else {
child = spawn('make', [runBench], { env: env });
}
child.stdout.setEncoding('utf8');
child.stdout.on('data', function(c) {
out += c;
Expand Down Expand Up @@ -136,8 +141,18 @@ function compare() {
if (show === 'green' && !g || show === 'red' && !r)
return;

var r0 = util.format('%s%s: %d%s', g, nodes[0], n0.toPrecision(5), g ? reset : '');
var r1 = util.format('%s%s: %d%s', r, nodes[1], n1.toPrecision(5), r ? reset : '');
var r0 = util.format(
'%s%s: %d%s',
g,
nodes[0],
n0.toPrecision(5), g ? reset : ''
);
var r1 = util.format(
'%s%s: %d%s',
r,
nodes[1],
n1.toPrecision(5), r ? reset : ''
);
pct = c + pct + '%' + reset;
var l = util.format('%s: %s %s', bench, r0, r1);
maxLen = Math.max(l.length + pct.length, maxLen);
Expand Down
4 changes: 2 additions & 2 deletions benchmark/domain/domain-fn-args.js
Expand Up @@ -20,9 +20,9 @@ function main(conf) {
for (var i = 0; i < n; i++) {
if (myArguments.length >= 2) {
args = Array.prototype.slice.call(myArguments, 1);
ret = fn.apply(this, args);
fn.apply(this, args);
} else {
ret = fn.call(this);
fn.call(this);
}
}
bdomain.exit();
Expand Down
3 changes: 2 additions & 1 deletion benchmark/fs/bench-readdir.js
Expand Up @@ -2,6 +2,7 @@

const common = require('../common');
const fs = require('fs');
const path = require('path');

const bench = common.createBenchmark(main, {
n: [1e4],
Expand All @@ -15,7 +16,7 @@ function main(conf) {
(function r(cntr) {
if (--cntr <= 0)
return bench.end(n);
fs.readdir(__dirname + '/../../lib/', function() {
fs.readdir(path.resolve(__dirname, '../../lib/'), function() {
r(cntr);
});
}(n));
Expand Down
3 changes: 2 additions & 1 deletion benchmark/fs/bench-readdirSync.js
Expand Up @@ -2,6 +2,7 @@

const common = require('../common');
const fs = require('fs');
const path = require('path');

const bench = common.createBenchmark(main, {
n: [1e4],
Expand All @@ -13,7 +14,7 @@ function main(conf) {

bench.start();
for (var i = 0; i < n; i++) {
fs.readdirSync(__dirname + '/../../lib/');
fs.readdirSync(path.resolve(__dirname, '../../lib/'));
}
bench.end(n);
}
4 changes: 2 additions & 2 deletions benchmark/http_simple_auto.js
Expand Up @@ -111,10 +111,10 @@ server.listen(port, function() {
});

function dump_mm_stats() {
if (typeof gc != 'function') return;
if (typeof global.gc != 'function') return;

var before = process.memoryUsage();
for (var i = 0; i < 10; ++i) gc();
for (var i = 0; i < 10; ++i) global.gc();
var after = process.memoryUsage();
setTimeout(print_stats, 250); // give GC time to settle

Expand Down
7 changes: 4 additions & 3 deletions benchmark/http_simple_cluster.js
@@ -1,10 +1,11 @@
'use strict';
var cluster = require('cluster');
var os = require('os');
const cluster = require('cluster');
const os = require('os');
const path = require('path');

if (cluster.isMaster) {
console.log('master running on pid %d', process.pid);
for (var i = 0, n = os.cpus().length; i < n; ++i) cluster.fork();
} else {
require(__dirname + '/http_simple.js');
require(path.join(__dirname, 'http_simple.js'));
}
1 change: 0 additions & 1 deletion benchmark/idle_clients.js
Expand Up @@ -17,7 +17,6 @@ function connect() {

s.on('close', function() {
if (gotConnected) connections--;
lastClose = new Date();
});

s.on('error', function() {
Expand Down
2 changes: 1 addition & 1 deletion benchmark/misc/freelist.js
Expand Up @@ -22,7 +22,7 @@ function main(conf) {

bench.start();

for (i = 0; i < n; i++){
for (i = 0; i < n; i++) {
// Return all the items to the pool
for (j = 0; j < poolSize; j++) {
list.free(used[j]);
Expand Down
2 changes: 1 addition & 1 deletion benchmark/misc/v8-bench.js
Expand Up @@ -20,4 +20,4 @@ global.load = function(filename) {
global.RegExp = $RegExp;
};

load('run.js');
global.load('run.js');
10 changes: 8 additions & 2 deletions benchmark/module/module-loader.js
Expand Up @@ -18,8 +18,14 @@ function main(conf) {
var n = +conf.thousands * 1e3;
for (var i = 0; i <= n; i++) {
fs.mkdirSync(benchmarkDirectory + i);
fs.writeFileSync(benchmarkDirectory + i + '/package.json', '{"main": "index.js"}');
fs.writeFileSync(benchmarkDirectory + i + '/index.js', 'module.exports = "";');
fs.writeFileSync(
benchmarkDirectory + i + '/package.json',
'{"main": "index.js"}'
);
fs.writeFileSync(
benchmarkDirectory + i + '/index.js',
'module.exports = "";'
);
}

measure(n);
Expand Down
6 changes: 4 additions & 2 deletions benchmark/tls/throughput.js
Expand Up @@ -45,9 +45,10 @@ function main(conf) {

server = tls.createServer(options, onConnection);
setTimeout(done, dur * 1000);
var conn;
server.listen(common.PORT, function() {
var opt = { port: common.PORT, rejectUnauthorized: false };
var conn = tls.connect(opt, function() {
conn = tls.connect(opt, function() {
bench.start();
conn.on('drain', write);
write();
Expand All @@ -68,7 +69,8 @@ function main(conf) {
function done() {
var mbits = (received * 8) / (1024 * 1024);
bench.end(mbits);
conn.destroy();
if (conn)
conn.destroy();
server.close();
}
}
Expand Down

0 comments on commit 65f4ecc

Please sign in to comment.