Skip to content

Commit edbed3f

Browse files
committed
benchmark: move http_simple.js to http directory
PR-URL: #7094 Reviewed-By: Trevor Norris <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]> Reviewed-By: Brian White <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent ee2843b commit edbed3f

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
File renamed without changes.

benchmark/http/cluster.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if (cluster.isMaster) {
1111
c: [50, 500]
1212
});
1313
} else {
14-
require('../http_simple.js');
14+
require('./_http_simple.js');
1515
}
1616

1717
function main(conf) {

benchmark/http/simple.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var bench = common.createBenchmark(main, {
1212

1313
function main(conf) {
1414
process.env.PORT = PORT;
15-
var server = require('../http_simple.js');
15+
var server = require('./_http_simple.js');
1616
setTimeout(function() {
1717
var path = '/' + conf.type + '/' + conf.length + '/' + conf.chunks;
1818
var args = ['-d', '10s', '-t', 8, '-c', conf.c];

0 commit comments

Comments
 (0)