Francois Gouget : testbot/Janitor: Make the TestLauncher and WineTest matches stricter.

Alexandre Julliard julliard at winehq.org
Mon Feb 14 15:40:07 CST 2022


Module: tools
Branch: master
Commit: 0398ad4a60134a2293819de5e9993041ddb189ce
URL:    https://source.winehq.org/git/tools.git/?a=commit;h=0398ad4a60134a2293819de5e9993041ddb189ce

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Mon Feb 14 16:57:57 2022 +0100

testbot/Janitor: Make the TestLauncher and WineTest matches stricter.

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 testbot/bin/Janitor.pl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/testbot/bin/Janitor.pl b/testbot/bin/Janitor.pl
index c68920e..1b5bb33 100755
--- a/testbot/bin/Janitor.pl
+++ b/testbot/bin/Janitor.pl
@@ -321,8 +321,8 @@ if (opendir(my $dh, "$DataDir/latest"))
     # Needed to update Windows VMs
     next if ($Entry eq "TestAgentd.exe");
     # Needed to run the tests
-    next if ($Entry =~ /^TestLauncher[0-9]*\.exe$/);
-    next if ($Entry =~ /^winetest[0-9]*-latest\.exe$/);
+    next if ($Entry =~ /^TestLauncher(?:32|64)\.exe$/);
+    next if ($Entry =~ /^winetest(?:64)?-latest\.exe$/);
 
     $Entry =~ m%^([^/]+)$%; # untaint
     my $FileName = "$DataDir/latest/$1";




More information about the wine-cvs mailing list