Francois Gouget : winetest/dissect: Fix the 'failed' summary lines.
Module: tools Branch: master Commit: 5518b0e1133577f328e5ffd61aaefe86be06b7e9 URL: https://source.winehq.org/git/tools.git/?a=commit;h=5518b0e1133577f328e5ffd6... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Fri Feb 19 14:40:23 2021 +0100 winetest/dissect: Fix the 'failed' summary lines. The source must always be in the 8th field, not the 6th! So put placeholders to replace the failure and skip counts. Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- winetest/dissect | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/winetest/dissect b/winetest/dissect index 46b3921..fc83726 100755 --- a/winetest/dissect +++ b/winetest/dissect @@ -793,7 +793,7 @@ while ($line = <IN>) { if ($l_rc == 258) { add_test_line("end", "Test failed: timed out"); - $summary = "failed 258"; + $summary = "failed 258 - -"; $extra_failures++; $broken = 1; } @@ -803,7 +803,7 @@ while ($line = <IN>) { if ($l_rc & 0xc0000000) { add_test_line("end", sprintf("Test failed: crash (%08x)", $l_rc & 0xffffffff)); - $summary = "failed crash"; + $summary = "failed crash - -"; $extra_failures++; $broken = 1; } @@ -816,7 +816,7 @@ while ($line = <IN>) { elsif ($l_rc & 0xc0000000) { add_test_line("end", sprintf("Test failed: crash (%08x)", $l_rc & 0xffffffff)); - $summary = "failed crash"; + $summary = "failed crash - -"; $extra_failures++; $broken = 1; }
participants (1)
-
Alexandre Julliard