@@ -30,9 +30,6 @@ var log_ = function() {
30
30
* @param {Object= } additionalConfig
31
31
*/
32
32
var init = function ( configFile , additionalConfig ) {
33
-
34
- var runnerErrorCount = 0 ;
35
-
36
33
var configParser = new ConfigParser ( ) ;
37
34
if ( configFile ) {
38
35
configParser . addFileConfig ( configFile ) ;
@@ -101,16 +98,21 @@ var init = function(configFile, additionalConfig) {
101
98
this . process . on ( 'error' , function ( err ) {
102
99
self . reporter . flush ( ) ;
103
100
log_ ( 'Runner Process(' + self . process . pid + ') Error: ' + err ) ;
104
- runnerErrorCount += 1 ;
101
+ self . reporter . exitCode = RUNNERS_FAILED_EXIT_CODE ;
105
102
} ) ;
106
103
107
104
this . process . on ( 'exit' , function ( code ) {
108
105
self . reporter . flush ( ) ;
109
106
if ( code ) {
110
- log_ ( 'Runner Process Exited With Error Code: ' + code ) ;
111
- runnerErrorCount += 1 ;
107
+ if ( self . reporter . failedCount ) {
108
+ log_ ( 'Test runner exited with ' + self . reporter . failedCount +
109
+ ' failed test(s)' ) ;
110
+ } else {
111
+ log_ ( 'Runner process exited unexpectedly with error code: ' + code ) ;
112
+ }
112
113
}
113
114
self . reporter . exitCode = code ;
115
+
114
116
if ( typeof testsDoneCallback === 'function' ) {
115
117
testsDoneCallback ( ) ;
116
118
}
@@ -162,7 +164,7 @@ var init = function(configFile, additionalConfig) {
162
164
cleanUpAndExit ( exitCode ) ;
163
165
} ) . catch ( function ( err ) {
164
166
log_ ( 'Error:' , err . stack || err . message || err ) ;
165
- cleanUpAndExit ( 1 ) ;
167
+ cleanUpAndExit ( RUNNERS_FAILED_EXIT_CODE ) ;
166
168
} ) ;
167
169
} else {
168
170
if ( config . debug ) {
@@ -193,21 +195,21 @@ var init = function(configFile, additionalConfig) {
193
195
deferred . promise . then ( function ( ) {
194
196
reporter . reportSummary ( ) ;
195
197
var exitCode = 0 ;
196
- if ( runnerErrorCount > 0 ) {
198
+ if ( reporter . totalProcessFailures ( ) > 0 ) {
197
199
exitCode = RUNNERS_FAILED_EXIT_CODE ;
200
+ } else if ( reporter . totalSpecFailures ( ) > 0 ) {
201
+ exitCode = 1 ;
198
202
}
199
203
return cleanUpAndExit ( exitCode ) ;
200
204
} ) ;
201
205
202
206
process . on ( 'exit' , function ( code ) {
203
-
204
- if ( code && code != RUNNERS_FAILED_EXIT_CODE ) {
207
+ if ( code ) {
205
208
log_ ( 'Process exited with error code ' + code ) ;
206
- } else if ( ! code &&
207
- scheduler . numTasksOutstanding ( ) > 0 ) {
208
- code = 1 ;
209
- log_ ( 'BUG: launcher exited with ' +
210
- scheduler . numTasksOutstanding ( ) + ' tasks remaining' ) ;
209
+ } else if ( scheduler . numTasksOutstanding ( ) > 0 ) {
210
+ code = RUNNERS_FAILED_EXIT_CODE ;
211
+ log_ ( 'BUG: launcher exited with ' +
212
+ scheduler . numTasksOutstanding ( ) + ' tasks remaining' ) ;
211
213
}
212
214
process . exit ( code ) ;
213
215
} ) ;
@@ -229,20 +231,36 @@ var reporter = {
229
231
return taskReporter ;
230
232
} ,
231
233
232
- reportSummary : function ( ) {
234
+ totalSpecFailures : function ( ) {
233
235
var specFailures = 0 ;
236
+ this . taskReporters_ . forEach ( function ( taskReporter ) {
237
+ specFailures += taskReporter . failedCount ;
238
+ } ) ;
239
+ return specFailures ;
240
+ } ,
241
+
242
+ totalProcessFailures : function ( ) {
234
243
var processFailures = 0 ;
244
+ this . taskReporters_ . forEach ( function ( taskReporter ) {
245
+ if ( ! taskReporter . failedCount && taskReporter . exitCode !== 0 ) {
246
+ processFailures += 1 ;
247
+ }
248
+ } ) ;
249
+ return processFailures ;
250
+ } ,
251
+
252
+ reportSummary : function ( ) {
253
+ var specFailures = this . totalSpecFailures ( ) ;
254
+ var processFailures = this . totalProcessFailures ( ) ;
235
255
this . taskReporters_ . forEach ( function ( taskReporter ) {
236
256
var capability = taskReporter . task . capability ;
237
257
var shortName = ( capability . browserName ) ? capability . browserName : '' ;
238
258
shortName += ( capability . version ) ? capability . version : '' ;
239
259
shortName += ( ' #' + taskReporter . task . taskId ) ;
240
260
if ( taskReporter . failedCount ) {
241
261
log_ ( shortName + ' failed ' + taskReporter . failedCount + ' test(s)' ) ;
242
- specFailures += taskReporter . failedCount ;
243
262
} else if ( taskReporter . exitCode !== 0 ) {
244
263
log_ ( shortName + ' failed with exit code: ' + taskReporter . exitCode ) ;
245
- processFailures += 1 ;
246
264
} else {
247
265
log_ ( shortName + ' passed' ) ;
248
266
}
0 commit comments