[PATCH] testbot: Allow hyphens in test filenames.

Francois Gouget fgouget at codeweavers.com
Tue Oct 22 04:13:49 CDT 2019


Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
---

For the vulkan-1 tests.

 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 bc962a911..acb87a42e 100644
--- a/testbot/lib/WineTestBot/LogUtils.pm
+++ b/testbot/lib/WineTestBot/LogUtils.pm
@@ -342,7 +342,7 @@ sub ParseWineTestReport($$$)
   foreach my $Line (<$LogFile>)
   {
     $Cur->{UnitSize} += length($Line);
-    if ($Line =~ m%^([_.a-z0-9-]+):([_a-z0-9]*) (start|skipped) (?:-|[/_.a-z0-9]+) (?:-|[.0-9a-f]+)\r?$%)
+    if ($Line =~ m%^([_.a-z0-9-]+):([_a-z0-9]*) (start|skipped) (?:-|[/_.a-z0-9-]+) (?:-|[.0-9a-f]+)\r?$%)
     {
       my ($Dll, $Unit, $Type) = ($1, $2, $3);
 
-- 
2.20.1



More information about the wine-devel mailing list