@@ -2459,7 +2459,7 @@ impl<'test> TestCx<'test> {
2459
2459
}
2460
2460
}
2461
2461
2462
- fn compare_output ( & self , kind : & str , actual : & str , expected : & str ) -> usize {
2462
+ fn compare_output ( & self , stream : & str , actual : & str , expected : & str ) -> usize {
2463
2463
let are_different = match ( self . force_color_svg ( ) , expected. find ( '\n' ) , actual. find ( '\n' ) ) {
2464
2464
// FIXME: We ignore the first line of SVG files
2465
2465
// because the width parameter is non-deterministic.
@@ -2499,56 +2499,66 @@ impl<'test> TestCx<'test> {
2499
2499
( expected, actual)
2500
2500
} ;
2501
2501
2502
+ // Write the actual output to a file in build/
2503
+ let test_name = self . config . compare_mode . as_ref ( ) . map_or ( "" , |m| m. to_str ( ) ) ;
2504
+ let actual_path = self
2505
+ . output_base_name ( )
2506
+ . with_extra_extension ( self . revision . unwrap_or ( "" ) )
2507
+ . with_extra_extension ( test_name)
2508
+ . with_extra_extension ( stream) ;
2509
+
2510
+ if let Err ( err) = fs:: write ( & actual_path, & actual) {
2511
+ self . fatal ( & format ! ( "failed to write {stream} to `{actual_path:?}`: {err}" , ) ) ;
2512
+ }
2513
+ println ! ( "Saved the actual {stream} to {actual_path:?}" ) ;
2514
+
2515
+ let expected_path =
2516
+ expected_output_path ( self . testpaths , self . revision , & self . config . compare_mode , stream) ;
2517
+
2502
2518
if !self . config . bless {
2503
2519
if expected. is_empty ( ) {
2504
- println ! ( "normalized {}:\n {}\n " , kind , actual) ;
2520
+ println ! ( "normalized {}:\n {}\n " , stream , actual) ;
2505
2521
} else {
2506
- println ! ( "diff of {}:\n " , kind) ;
2507
- print ! ( "{}" , write_diff( expected, actual, 3 ) ) ;
2522
+ println ! ( "diff of {stream}:\n " ) ;
2523
+ if let Some ( diff_command) = self . config . diff_command . as_deref ( ) {
2524
+ let mut args = diff_command. split_whitespace ( ) ;
2525
+ let name = args. next ( ) . unwrap ( ) ;
2526
+ match Command :: new ( name)
2527
+ . args ( args)
2528
+ . args ( [ & expected_path, & actual_path] )
2529
+ . output ( )
2530
+ {
2531
+ Err ( err) => {
2532
+ self . fatal ( & format ! (
2533
+ "failed to call custom diff command `{diff_command}`: {err}"
2534
+ ) ) ;
2535
+ }
2536
+ Ok ( output) => {
2537
+ let output = String :: from_utf8_lossy ( & output. stdout ) ;
2538
+ print ! ( "{output}" ) ;
2539
+ }
2540
+ }
2541
+ } else {
2542
+ print ! ( "{}" , write_diff( expected, actual, 3 ) ) ;
2543
+ }
2508
2544
}
2509
- }
2510
-
2511
- let mode = self . config . compare_mode . as_ref ( ) . map_or ( "" , |m| m. to_str ( ) ) ;
2512
- let output_file = self
2513
- . output_base_name ( )
2514
- . with_extra_extension ( self . revision . unwrap_or ( "" ) )
2515
- . with_extra_extension ( mode)
2516
- . with_extra_extension ( kind) ;
2517
-
2518
- let mut files = vec ! [ output_file] ;
2519
- if self . config . bless {
2545
+ } else {
2520
2546
// Delete non-revision .stderr/.stdout file if revisions are used.
2521
2547
// Without this, we'd just generate the new files and leave the old files around.
2522
2548
if self . revision . is_some ( ) {
2523
2549
let old =
2524
- expected_output_path ( self . testpaths , None , & self . config . compare_mode , kind ) ;
2550
+ expected_output_path ( self . testpaths , None , & self . config . compare_mode , stream ) ;
2525
2551
self . delete_file ( & old) ;
2526
2552
}
2527
- files. push ( expected_output_path (
2528
- self . testpaths ,
2529
- self . revision ,
2530
- & self . config . compare_mode ,
2531
- kind,
2532
- ) ) ;
2533
- }
2534
2553
2535
- for output_file in & files {
2536
- if actual. is_empty ( ) {
2537
- self . delete_file ( output_file) ;
2538
- } else if let Err ( err) = fs:: write ( & output_file, & actual) {
2539
- self . fatal ( & format ! (
2540
- "failed to write {} to `{}`: {}" ,
2541
- kind,
2542
- output_file. display( ) ,
2543
- err,
2544
- ) ) ;
2554
+ if let Err ( err) = fs:: write ( & expected_path, & actual) {
2555
+ self . fatal ( & format ! ( "failed to write {stream} to `{expected_path:?}`: {err}" ) ) ;
2545
2556
}
2557
+ println ! ( "Blessing the {stream} of {test_name} in {expected_path:?}" ) ;
2546
2558
}
2547
2559
2548
- println ! ( "\n The actual {0} differed from the expected {0}." , kind) ;
2549
- for output_file in files {
2550
- println ! ( "Actual {} saved to {}" , kind, output_file. display( ) ) ;
2551
- }
2560
+ println ! ( "\n The actual {0} differed from the expected {0}." , stream) ;
2561
+
2552
2562
if self . config . bless { 0 } else { 1 }
2553
2563
}
2554
2564
0 commit comments