Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[squash] rename benchmarks to benchmark
  • Loading branch information
maclover7 committed Sep 8, 2017
commit 4388c223e05d809728e077ff7d18b87329c53f07
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