mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
5b63d48e9e
This change is in preparation for lint-enforced brace style. PR-URL: https://github.com/nodejs/node/pull/7630 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Trevor Norris <trev.norris@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
31 lines
750 B
JavaScript
31 lines
750 B
JavaScript
'use strict';
|
|
require('../common');
|
|
var http = require('http');
|
|
var util = require('util');
|
|
var fork = require('child_process').fork;
|
|
|
|
if (process.env.NODE_TEST_FORK_PORT) {
|
|
var req = http.request({
|
|
headers: {'Content-Length': '42'},
|
|
method: 'POST',
|
|
host: '127.0.0.1',
|
|
port: +process.env.NODE_TEST_FORK_PORT,
|
|
}, process.exit);
|
|
req.write('BAM');
|
|
req.end();
|
|
} else {
|
|
var server = http.createServer(function(req, res) {
|
|
res.writeHead(200, {'Content-Length': '42'});
|
|
req.pipe(res);
|
|
req.on('close', function() {
|
|
server.close();
|
|
res.end();
|
|
});
|
|
});
|
|
server.listen(0, function() {
|
|
fork(__filename, {
|
|
env: util._extend(process.env, {NODE_TEST_FORK_PORT: this.address().port})
|
|
});
|
|
});
|
|
}
|