0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

benchmark: chunky http client should exit with 0

Previously when there is an error in the chunky client of the
http benchmark, the server would not check the exit code and
thus produce invalid results.

PR-URL: https://github.com/nodejs/node/pull/12916
Fixes: https://github.com/nodejs/node/issues/12903
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
Joyee Cheung 2017-05-09 17:06:07 +08:00
parent 98609fc1c4
commit 3fa5d80eda

View File

@ -1,5 +1,6 @@
'use strict';
var assert = require('assert');
var path = require('path');
var http = require('http');
var fs = require('fs');
@ -37,6 +38,7 @@ server.listen(PIPE);
var child = fork(pep, process.argv.slice(2));
child.on('message', common.sendResult);
child.on('close', function() {
child.on('close', function(code) {
server.close();
assert.strictEqual(code, 0);
});