|
From: <min...@wi...> - 2025-09-30 09:57:38
|
From: Mingli Yu <min...@wi...> Though the valgrind testing is extended to produce automake-style log into test-suite-overall.log [1], it's better also print the test result to the stdout. [1] https://sourceware.org/git/?p=valgrind.git;a=commitdiff;h=61e44a4aef8775b925a7a91f403ebd7f4f6670a4 Signed-off-by: Mingli Yu <min...@wi...> --- tests/vg_regtest.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/vg_regtest.in b/tests/vg_regtest.in index 945b4c161..2f5f3f678 100644 --- a/tests/vg_regtest.in +++ b/tests/vg_regtest.in @@ -720,6 +720,7 @@ sub test_one_dir($$) close(TSDIRLOG); my $result = do_one_test($full_dir, $f); print TSLOG scalar localtime, " result: $result $full_dir/$f.log\n"; + print "$result: $full_dir/$f\n"; $num_results{$result} ++; if ($result ne "PASS") { # transcribe .log file into the overall log. @@ -823,6 +824,7 @@ while (1) { # we will exit after one loop, unless looptillfail my $result = do_one_test($dir, $file); print TSLOG scalar localtime, " result: $result $dir/$file.log\n"; + print "$result: $dir/$file\n"; $num_results{$result} ++; if ($result ne "PASS") { # transcribe .log file into the overall log. -- 2.34.1 |