@@ -249,7 +249,8 @@ fn run_test(
249
249
outdir : DirState ,
250
250
path : PathBuf ,
251
251
) -> Result < ( ) , TestFailure > {
252
- let ( test, line_offset) = make_test ( test, Some ( cratename) , as_test_harness, opts, edition) ;
252
+ let ( test, line_offset, supports_color) =
253
+ make_test ( test, Some ( cratename) , as_test_harness, opts, edition) ;
253
254
254
255
let output_file = outdir. path ( ) . join ( "rust_out" ) ;
255
256
@@ -294,38 +295,19 @@ fn run_test(
294
295
path. to_str ( ) . expect ( "target path must be valid unicode" ) . to_string ( )
295
296
}
296
297
} ) ;
297
- match options. error_format {
298
- ErrorOutputType :: HumanReadable ( kind) => {
299
- let ( _, color_config) = kind. unzip ( ) ;
300
- match color_config {
301
- ColorConfig :: Never => {
302
- compiler. arg ( "--color" ) . arg ( "never" ) ;
303
- }
304
- ColorConfig :: Always => {
305
- compiler. arg ( "--color" ) . arg ( "always" ) ;
306
- }
307
- ColorConfig :: Auto => {
308
- #[ cfg( windows) ]
309
- {
310
- // This specific check is because old windows consoles require a connection
311
- // to be able to display colors (and they don't support ANSI), which we
312
- // cannot in here, so in case this is an old windows console, we can't
313
- // display colors.
314
- use crate :: termcolor:: { ColorChoice , StandardStream , WriteColor } ;
315
- if StandardStream :: stdout ( ColorChoice :: Auto ) . is_synchronous ( ) {
316
- compiler. arg ( "--color" ) . arg ( "never" ) ;
317
- } else {
318
- compiler. arg ( "--color" ) . arg ( "always" ) ;
319
- }
320
- }
321
- #[ cfg( not( windows) ) ]
322
- {
323
- compiler. arg ( "--color" ) . arg ( "always" ) ;
324
- }
325
- }
298
+ if let ErrorOutputType :: HumanReadable ( kind) = options. error_format {
299
+ let ( _, color_config) = kind. unzip ( ) ;
300
+ match color_config {
301
+ ColorConfig :: Never => {
302
+ compiler. arg ( "--color" ) . arg ( "never" ) ;
303
+ }
304
+ ColorConfig :: Always => {
305
+ compiler. arg ( "--color" ) . arg ( "always" ) ;
306
+ }
307
+ ColorConfig :: Auto => {
308
+ compiler. arg ( "--color" ) . arg ( if supports_color { "always" } else { "never" } ) ;
326
309
}
327
310
}
328
- _ => { }
329
311
}
330
312
331
313
compiler. arg ( "-" ) ;
@@ -396,18 +378,19 @@ fn run_test(
396
378
}
397
379
398
380
/// Transforms a test into code that can be compiled into a Rust binary, and returns the number of
399
- /// lines before the test code begins.
381
+ /// lines before the test code begins as well as if the output stream supports colors or not .
400
382
pub fn make_test (
401
383
s : & str ,
402
384
cratename : Option < & str > ,
403
385
dont_insert_main : bool ,
404
386
opts : & TestOptions ,
405
387
edition : Edition ,
406
- ) -> ( String , usize ) {
388
+ ) -> ( String , usize , bool ) {
407
389
let ( crate_attrs, everything_else, crates) = partition_source ( s) ;
408
390
let everything_else = everything_else. trim ( ) ;
409
391
let mut line_offset = 0 ;
410
392
let mut prog = String :: new ( ) ;
393
+ let mut supports_color = false ;
411
394
412
395
if opts. attrs . is_empty ( ) && !opts. display_warnings {
413
396
// If there aren't any attributes supplied by #![doc(test(attr(...)))], then allow some
@@ -433,7 +416,7 @@ pub fn make_test(
433
416
// crate already is included.
434
417
let result = rustc_driver:: catch_fatal_errors ( || {
435
418
rustc_span:: with_session_globals ( edition, || {
436
- use rustc_errors:: emitter:: EmitterWriter ;
419
+ use rustc_errors:: emitter:: { Emitter , EmitterWriter } ;
437
420
use rustc_errors:: Handler ;
438
421
use rustc_parse:: maybe_new_parser_from_source_str;
439
422
use rustc_session:: parse:: ParseSess ;
@@ -447,6 +430,9 @@ pub fn make_test(
447
430
let sm = Lrc :: new ( SourceMap :: new ( FilePathMapping :: empty ( ) ) ) ;
448
431
let emitter =
449
432
EmitterWriter :: new ( box io:: sink ( ) , None , false , false , false , None , false ) ;
433
+
434
+ supports_color = emitter. supports_color ( ) ;
435
+
450
436
// FIXME(misdreavus): pass `-Z treat-err-as-bug` to the doctest parser
451
437
let handler = Handler :: with_emitter ( false , None , box emitter) ;
452
438
let sess = ParseSess :: with_span_handler ( handler, sm) ;
@@ -516,7 +502,7 @@ pub fn make_test(
516
502
Err ( ErrorReported ) => {
517
503
// If the parser panicked due to a fatal error, pass the test code through unchanged.
518
504
// The error will be reported during compilation.
519
- return ( s. to_owned ( ) , 0 ) ;
505
+ return ( s. to_owned ( ) , 0 , false ) ;
520
506
}
521
507
} ;
522
508
@@ -566,7 +552,7 @@ pub fn make_test(
566
552
567
553
debug ! ( "final doctest:\n {}" , prog) ;
568
554
569
- ( prog, line_offset)
555
+ ( prog, line_offset, supports_color )
570
556
}
571
557
572
558
// FIXME(aburka): use a real parser to deal with multiline attributes
0 commit comments