mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
864 B
28 lines
864 B
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const http = require('http');
|
|
const spawn = require('child_process').spawn;
|
|
|
|
if (process.argv[2] === 'child') {
|
|
const server = http.createServer(common.mustCall((req, res) => {
|
|
res.end('hello');
|
|
}));
|
|
|
|
server.listen(0, common.mustCall((s) => {
|
|
const rr = http.get(
|
|
{ port: server.address().port },
|
|
common.mustCall((d) => {
|
|
// This bad input (0) should abort the parser and the process
|
|
rr.parser.consume(0);
|
|
server.close();
|
|
}));
|
|
}));
|
|
} else {
|
|
const child = spawn(process.execPath, [__filename, 'child'],
|
|
{ stdio: 'inherit' });
|
|
child.on('exit', common.mustCall((code, signal) => {
|
|
assert(common.nodeProcessAborted(code, signal),
|
|
'process should have aborted, but did not');
|
|
}));
|
|
}
|
|
|