File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -249,12 +249,16 @@ async function main(argv) {
249
249
console . log ( "`--no-headless` option is active, disabling concurrency for running tests." ) ;
250
250
}
251
251
252
- console . log ( `Running ${ files . length } rustdoc-gui (${ opts [ "jobs" ] } concurrently) ...` ) ;
253
-
254
252
if ( opts [ "jobs" ] < 1 ) {
253
+ console . log (
254
+ `Running ${ files . length } rustdoc-gui (UNBOUNDED concurrency; use "-j#" for a limit) ...`
255
+ ) ;
255
256
process . setMaxListeners ( files . length + 1 ) ;
256
257
} else if ( headless ) {
258
+ console . log ( `Running ${ files . length } rustdoc-gui (${ opts [ "jobs" ] } concurrently) ...` ) ;
257
259
process . setMaxListeners ( opts [ "jobs" ] + 1 ) ;
260
+ } else {
261
+ console . log ( `Running ${ files . length } rustdoc-gui ...` ) ;
258
262
}
259
263
260
264
// We catch this "event" to display a nicer message in case of unexpected exit (because of a
You can’t perform that action at this time.
0 commit comments