Skip to content

Commit

Permalink
[squash] rename benchmarks to benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
maclover7 committed Sep 8, 2017
1 parent ae90f1f commit 4388c22
Show file tree
Hide file tree
Showing 14 changed files with 13 additions and 13 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/parallel/test-benchmark-arrays.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

require('../common');

const runBenchmark = require('../common/benchmarks');
const runBenchmark = require('../common/benchmark');

runBenchmark('arrays', ['n=1', 'type=Array']);
2 changes: 1 addition & 1 deletion test/parallel/test-benchmark-cluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

require('../common');

const runBenchmark = require('../common/benchmarks');
const runBenchmark = require('../common/benchmark');

runBenchmark('cluster', ['n=1', 'payload=string', 'sendsPerBroadcast=1']);
2 changes: 1 addition & 1 deletion test/parallel/test-benchmark-crypto.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if (!common.hasCrypto)
if (common.hasFipsCrypto)
common.skip('some benchmarks are FIPS-incompatible');

const runBenchmark = require('../common/benchmarks');
const runBenchmark = require('../common/benchmark');

runBenchmark('crypto',
[
Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-benchmark-domain.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

require('../common');

const runBenchmark = require('../common/benchmarks');
const runBenchmark = require('../common/benchmark');

runBenchmark('domain', ['n=1', 'arguments=0']);
2 changes: 1 addition & 1 deletion test/parallel/test-benchmark-events.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

require('../common');

const runBenchmark = require('../common/benchmarks');
const runBenchmark = require('../common/benchmark');

runBenchmark('events', ['n=1']);
2 changes: 1 addition & 1 deletion test/parallel/test-benchmark-os.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

require('../common');

const runBenchmark = require('../common/benchmarks');
const runBenchmark = require('../common/benchmark');

runBenchmark('os', ['n=1']);
2 changes: 1 addition & 1 deletion test/parallel/test-benchmark-path.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require('../common');

const runBenchmark = require('../common/benchmarks');
const runBenchmark = require('../common/benchmark');

runBenchmark('path',
[
Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-benchmark-process.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require('../common');

const runBenchmark = require('../common/benchmarks');
const runBenchmark = require('../common/benchmark');

runBenchmark('process',
[
Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-benchmark-timers.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require('../common');

const runBenchmark = require('../common/benchmarks');
const runBenchmark = require('../common/benchmark');

runBenchmark('timers',
[
Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-benchmark-zlib.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require('../common');

const runBenchmark = require('../common/benchmarks');
const runBenchmark = require('../common/benchmark');

runBenchmark('zlib',
[
Expand Down
2 changes: 1 addition & 1 deletion test/sequential/test-benchmark-child-process.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

require('../common');

const runBenchmark = require('../common/benchmarks');
const runBenchmark = require('../common/benchmark');

runBenchmark('child_process',
[
Expand Down
2 changes: 1 addition & 1 deletion test/sequential/test-benchmark-http.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if (!common.enoughTestMem)
// rather than parallel to make sure it does not conflict with tests that choose
// random available ports.

const runBenchmark = require('../common/benchmarks');
const runBenchmark = require('../common/benchmark');

runBenchmark('http',
[
Expand Down
2 changes: 1 addition & 1 deletion test/sequential/test-benchmark-net.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require('../common');
// rather than parallel to make sure it does not conflict with tests that choose
// random available ports.

const runBenchmark = require('../common/benchmarks');
const runBenchmark = require('../common/benchmark');

runBenchmark('net',
[
Expand Down

0 comments on commit 4388c22

Please sign in to comment.