From: Francois Gouget Subject: [PATCH 2/2] testbot/LogUtils: Tag the "too much data" error byte count as variable. Message-Id: <260a2ca99188a76dc0169982c06f0b2918a18ea8.1577663090.git.fgouget@codeweavers.com> Date: Mon, 30 Dec 2019 00:48:23 +0100 (CET) In-Reply-To: References: This will eventually allow removing a special case in GetLineKey(). Signed-off-by: Francois Gouget --- testbot/lib/WineTestBot/LogUtils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testbot/lib/WineTestBot/LogUtils.pm b/testbot/lib/WineTestBot/LogUtils.pm index 0489f3e5b..2f230b521 100644 --- a/testbot/lib/WineTestBot/LogUtils.pm +++ b/testbot/lib/WineTestBot/LogUtils.pm @@ -285,7 +285,7 @@ sub _CloseTestUnit($$$) if ($Cur->{UnitSize} > $MaxUnitSize) { - _AddError($Parser, "prints too much data ($Cur->{UnitSize} bytes)", $Cur); + _AddError($Parser, "prints too much data (($Cur->{UnitSize} bytes))", $Cur); } if (!$Cur->{IsBroken} and defined $Cur->{Rc}) { -- 2.20.1