File tree 2 files changed +12
-3
lines changed
2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,10 @@ function createExitHarness (conf) {
43
43
} ) ;
44
44
45
45
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
+ }
47
50
48
51
var ended = false ;
49
52
stream . on ( 'end' , function ( ) { ended = true } ) ;
@@ -54,6 +57,9 @@ function createExitHarness (conf) {
54
57
var _error ;
55
58
56
59
process . on ( 'uncaughtException' , function ( err ) {
60
+ if ( err && err . code === 'EPIPE' && err . errno === 'EPIPE'
61
+ && err . syscall === 'write' ) return ;
62
+
57
63
_error = err
58
64
59
65
throw err
@@ -73,6 +79,7 @@ function createExitHarness (conf) {
73
79
harness . close ( ) ;
74
80
process . exit ( code || harness . _exitCode ) ;
75
81
} ) ;
82
+
76
83
return harness ;
77
84
}
78
85
Original file line number Diff line number Diff line change @@ -3,9 +3,11 @@ var combine = require('stream-combiner');
3
3
var split = require ( 'split' ) ;
4
4
5
5
module . exports = function ( ) {
6
- return combine ( split ( ) , through ( write ) ) ;
6
+ var stream = combine ( split ( ) , through ( write ) ) ;
7
+ return stream ;
7
8
8
9
function write ( line ) {
9
- console . log ( line ) ;
10
+ try { console . log ( line ) ; }
11
+ catch ( e ) { stream . emit ( 'error' , e ) }
10
12
}
11
13
} ;
You can’t perform that action at this time.
0 commit comments