Module: tools Branch: master Commit: b0f16dd278106a5a515fb01daf685ca1faecb350 URL: https://source.winehq.org/git/tools.git/?a=commit;h=b0f16dd278106a5a515fb01d...
Author: Francois Gouget fgouget@codeweavers.com Date: Fri Feb 19 01:36:48 2021 +0100
winetest/dissect: Tweak a couple of add_test_line() messages.
They should have no trailing linefeed or full stop.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
winetest/dissect | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/winetest/dissect b/winetest/dissect index 4341999..4f15bdd 100755 --- a/winetest/dissect +++ b/winetest/dissect @@ -485,7 +485,7 @@ sub check_unit($$) my ($l_unit, $l_type) = @_; if (!$units{$l_unit} and !$broken) { - add_test_line("end", "Misplaced $l_type message\n"); + add_test_line("end", "Misplaced $l_type message"); $extra_failures++; $broken = 1; } @@ -608,7 +608,7 @@ while ($line = <IN>) { $testbox = create_test_unit_box(); if ($l_type eq "skipped") { - add_test_line("skipped", "Skipped by user request."); + add_test_line("skipped", "Skipped by user request"); print SUM "- $dll $unit skipped - - - $source $rev\n"; mydie "too many test units skipped by user request (>$maxuserskips at $dll:$unit)" if ++$skipped_units > $maxuserskips; $rc = 0;