[PATCH] winetest: Allow hyphens in test filenames.

Zebediah Figura z.figura12 at gmail.com
Sun Jun 24 11:54:14 CDT 2018


For vulkan-1:vulkan.

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 winetest/dissect | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/winetest/dissect b/winetest/dissect
index 7416317..4db4f85 100755
--- a/winetest/dissect
+++ b/winetest/dissect
@@ -583,7 +583,7 @@ while ($line = <IN>) {
     next if ($line =~ /^\s*$/);
     chomp $line;
     $line =~ s/\r+$//;
-    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 ($l_dll, $l_unit, $l_type, $l_source, $l_rev) = ($1, $2, $3, $4, $5);
 
-- 
2.7.4




More information about the wine-devel mailing list