From: Francois Gouget Subject: [PATCH 1/4] testbot: Add a ModuleBuild check in GetPatchImpacts(). Message-Id: <9167ac781d3fc158e51fcdec88a3058b22bfcaa0.1537518914.git.fgouget@codeweavers.com> Date: Fri, 21 Sep 2018 10:35:22 +0200 (CEST) Patches that impact a single module can impact the Wine files list too. Signed-off-by: Francois Gouget --- testbot/lib/WineTestBot/PatchUtils.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testbot/lib/WineTestBot/PatchUtils.pm b/testbot/lib/WineTestBot/PatchUtils.pm index 9e0e68980..602c80b7d 100644 --- a/testbot/lib/WineTestBot/PatchUtils.pm +++ b/testbot/lib/WineTestBot/PatchUtils.pm @@ -279,7 +279,8 @@ sub GetPatchImpacts($;$) if ($PastImpacts) { - if ($PastImpacts->{WineBuild} or $PastImpacts->{TestBuild}) + if ($PastImpacts->{WineBuild} or $PastImpacts->{ModuleBuild} or + $PastImpacts->{TestBuild}) { # Update the list of Wine files so we correctly recognize patchset parts # that modify new Wine files. -- 2.18.0