From 18ee3315290b4e3172636d29f55f51352bd6f033 Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Thu, 9 Oct 2025 01:07:19 +0300 Subject: [PATCH] Add the mode to the output --- crates/core/src/differential_tests/entry_point.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/crates/core/src/differential_tests/entry_point.rs b/crates/core/src/differential_tests/entry_point.rs index b828f15..20fcfee 100644 --- a/crates/core/src/differential_tests/entry_point.rs +++ b/crates/core/src/differential_tests/entry_point.rs @@ -265,9 +265,10 @@ async fn start_cli_reporting_task(output_format: OutputFormat, reporter: Reporte OutputFormat::CargoTestLike => { writeln!( buf, - "\t{} {}\n", + "\t{} {} - {}\n", Color::Green.paint("Running"), - metadata_file_path.display() + metadata_file_path.display(), + mode ) .unwrap(); @@ -329,7 +330,7 @@ async fn start_cli_reporting_task(output_format: OutputFormat, reporter: Reporte OutputFormat::CargoTestLike => { writeln!( buf, - "run finished. {} passed; {} failed; {} ignored; finished in {}", + "run finished. {} passed; {} failed; {} ignored; finished in {}s", global_success_count, global_failure_count, global_ignore_count,