Module: tools
Branch: master
Commit: 88455aac32e777c0c3d675e00c842c943699c459
URL: https://source.winehq.org/git/tools.git/?a=commit;h=88455aac32e777c0c3d675e…
Author: Francois Gouget <fgouget(a)codeweavers.com>
Date: Wed Apr 7 11:05:50 2021 +0200
testbot/PatchUtils: Rerun the tests when the Makefile is modified.
Makefile changes are less likely to cause tests to fail but they are
also quite rare so they are not worth special-casing.
Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
testbot/lib/WineTestBot/PatchUtils.pm | 3 ---
1 file changed, 3 deletions(-)
diff --git a/testbot/lib/WineTestBot/PatchUtils.pm b/testbot/lib/WineTestBot/PatchUtils.pm
index a7d33f6..eb9fa09 100644
--- a/testbot/lib/WineTestBot/PatchUtils.pm
+++ b/testbot/lib/WineTestBot/PatchUtils.pm
@@ -570,9 +570,6 @@ sub GetPatchImpacts($)
my $TestFiles = $Module->{TestFiles};
foreach my $File (sort keys %$TestFiles)
{
- # Assume makefile modifications may break the build but not the tests
- next if ($File eq "Makefile.in");
-
my $Base = $File;
if ($Base !~ s/(?:\.c|\.spec)$//)
{