mirror of
https://github.com/nodejs/node.git
synced 2024-11-28 22:46:31 +01:00
3e1b1dd4a9
The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
27 lines
668 B
JavaScript
27 lines
668 B
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
intentionally_not_defined();
|
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
|
res.write('Thank you, come again.');
|
|
res.end();
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
var req;
|
|
for (var i = 0; i < 4; i += 1) {
|
|
req = http.get({ port: common.PORT, path: '/busy/' + i });
|
|
}
|
|
});
|
|
|
|
var exception_count = 0;
|
|
|
|
process.on('uncaughtException', function(err) {
|
|
console.log('Caught an exception: ' + err);
|
|
if (err.name === 'AssertionError') throw err;
|
|
if (++exception_count == 4) process.exit(0);
|
|
});
|
|
|