Skip to content

Commit 1589695

Browse files
author
James Halliday
committed
suppress EPIPE but set the exit code to 1 so test results may be piped around to head/grep/tail
1 parent 9882d34 commit 1589695

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

index.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ function createExitHarness (conf) {
4343
});
4444

4545
var stream = harness.createStream();
46-
stream.pipe(createDefaultStream());
46+
var es = stream.pipe(createDefaultStream());
47+
if (canEmitExit) {
48+
es.on('error', function (err) { harness._exitCode = 1 });
49+
}
4750

4851
var ended = false;
4952
stream.on('end', function () { ended = true });
@@ -54,6 +57,9 @@ function createExitHarness (conf) {
5457
var _error;
5558

5659
process.on('uncaughtException', function (err) {
60+
if (err && err.code === 'EPIPE' && err.errno === 'EPIPE'
61+
&& err.syscall === 'write') return;
62+
5763
_error = err
5864

5965
throw err
@@ -73,6 +79,7 @@ function createExitHarness (conf) {
7379
harness.close();
7480
process.exit(code || harness._exitCode);
7581
});
82+
7683
return harness;
7784
}
7885

lib/default_stream.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ var combine = require('stream-combiner');
33
var split = require('split');
44

55
module.exports = function () {
6-
return combine(split(), through(write));
6+
var stream = combine(split(), through(write));
7+
return stream;
78

89
function write (line) {
9-
console.log(line);
10+
try { console.log(line); }
11+
catch (e) { stream.emit('error', e) }
1012
}
1113
};

0 commit comments

Comments
 (0)